Top "Qtablewidget" questions

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

How to make a column in QTableWidget read only?

I would like to have one column in QTableWidget NOT editable. In forums I have read a lot about some …

qt qt4 qtablewidget
How to delete all rows from QTableWidget

I am trying to delete all rows from a QTableWidget . Here is what I tried. for ( int i = 0; i < …

c++ qt qtablewidget
How can I add a checkbox/radio button to QTableWidget

How can I add a checkbox/radiobutton/combobox to a QTableWidget or a QListWidget?

c++ qt qt4 qt-creator qtablewidget
How to add a row in a tableWidget PyQT?

I am currently working on a widget that was designed in Qt Designer. I am having trouble with the syntax / …

python pyqt pyqt4 qtablewidget
How can I show data on QTableWidget and read data from it with header?

How can I show data on QTableWidget and read data from it with header?

qt qtablewidget
How change the background color for a blank cell in QTableWidget

If a cell have some data, using tableWidget->item(8,0)->setBackgroundColor(Qt::red); to change the background color …

qt qt4 qtablewidget qt4.8 qtablewidgetitem
Set default alignment for cells in QTableWidget

I know you can set the alignment for each item using: TableWidget->item(0,0)->setTextAlignment(Qt::AlignLeft); However …

c++ qt qtablewidget text-alignment
get cell value based on header string and selected row

For example, I have a PyQt QTableWidget which has 3 columns and 2 rows. The column headers are labeled A, B, and …

python pyqt qtablewidget
QTableWidget vs QTableView

I am new to this Model/View Framework of Qt. In my application I want to have 1000 X 1000 cells. There …

c++ qt qtableview qtablewidget
Resize column width to fit into the QTableWidget pyqt

I've googled around but I'm not able to find a solution to my problem. I have a QTableWidget with 2 columns …

python qt pyqt qtablewidget autoresize