Top "Qtablewidget" questions

QTableWidget is a Qt class providing an item-based table view with a default model.

QTableWidget - Change the row color

I'm trying to change the background color of a QTableWidget row. There are some others posts about the same thing …

python python-2.7 pyqt pyqt4 qtablewidget
Sorting in pyqt tablewidget

How can I sort a coloumn in pyqt by the highest number? Currently I have setSortingEnabled(True) and that only …

python pyqt qtablewidget
How to disable selection highlighting in a QTableWidget

I have a QTableWidget with a disabled setSelectionMode (QTableWidget::NoSelection) and the QTableWidgetItems I fill in don't have the Qt::…

python c++ qt qt4 qtablewidget
How to word wrap text in the rows and columns of a QTableWidget?

I tried: QTableWidget *j = new QTableWidget (10000, 5, centralWidget); j->setColumnWidth (0, 500); j->setColumnWidth (1, 30); j->setColumnWidth (2, 30); j->setColumnWidth (3, 320); j-&…

qt qtablewidget
Reading selected Items from QTableWidget

How can read selected items from QTableWidget? Thanks

qt qtablewidget
PyQt:How do i set different header sizes for individual headers?

I have a list containing lists with two items,a word and a number.This list will be presented using …

python pyqt resize qtablewidget qheaderview
How can I enable / disable QTableWidget's horizontal / vertical header?

If I set the horizontalHeaderVisible or verticalHeaderVisible attribute to false in Qt Designer, this works fine. But how can I …

python header pyqt qtablewidget
QTableWidget edit only one column and leave the rest non-editable

In QT 4.7, I am trying to make one QTableWidgetItem in a QTableWidget Editable and the rest all columns should be …

qt qt4 qtablewidget qtablewidgetitem
QTableWidget auto stretch last field just like QTreeWidget does

Is there anyway to let QTableWidget's header items stretch to full size just like QTreeWidget does ?

qt qtablewidget qt4.8
Qt how to insert string inside a cell in QTableWidget

Possible duplicate: Filling some QTableWidgetItems with QString from file How to insert rows at run time in a QTableWidget? How …

qt insert qstring qtablewidget qtablewidgetitem