Top "Qtableview" questions

QTableView is a Qt class providing a default model/view implementation of a table view.

How to sort a QTableView by a column?

I am using the QTableView to display a QAbstractTableModel: #include <QtGui/QApplication> #include <QAbstractTableModel> #include <…

c++ qt qtableview
Qt Using Custom QItemDelegate for QTableView

I followed the Spin Box Delegate tutorial, which Qt provides, to try to implement my own QItemDelegate. It would be …

c++ qt qtableview qcombobox qitemdelegate
Qt hide column in QTableView

I want to hide the ID column in the QtableView and i can't do that on my implementation. Can anyone …

c++ qt qtableview
QTableView column width

I'm struggling to set column width manually in a QTableView. Why doesn't this piece of code work? tabb = new QTableView; …

c++ qt qtableview
How to set data inside a QAbstractTableModel

I need to implement a table with Qt. I believe I'll be suing a QAbstractTableModel, with a QTableView using this …

qt qtableview qabstracttablemodel
PyQt: Adding rows to QTableView using QAbstractTableModel

I am super new to Qt programming. I am trying to make a simple table that can have rows added …

python button row qtableview qabstracttablemodel
how to add a right click menu to each cell of QTableView in PyQt

I want to add a right click menu to delete, rename or open image in each of cell of QTAbleView …

python-2.7 pyqt contextmenu qtableview qtablewidgetitem
QTableView - not allow user to edit cell

I created a QTableView with a QSqlTableModel. By standard, double-clicking on the cells will mark them and the user can …

c++ qt qt4 qtableview
PySide + QTableView example

Can anyone point me to a simple example of QTableView in PySide? I found the QTableView docs but unfortunately they …

python pyside qtableview
Qt: QTableView how to add a row?

I have got a QTableView with data in it. What is the simplest way to add a row? Thanks!

qt qtableview