Top "Qtableview" questions

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

Qt - How can I make a particular Column of my QTableView as Non Editable?

I have a QTableView with 4 Rows and 4 columns each representing their data's in it. By default the QTableView is editable. …

c++ qt delegates qtableview qt4.7
Add items to columns in QStandardItemModel

I am currently adding rows to my QTableView as such QStandardItem* itm; QStandardItemModel* model = new QStandardItemModel(this); model->setColumnCount(2); …

c++ qt qtableview qstandarditemmodel
How to Move Up a Selected Row in Qt

I have a QTableView with 3 rows and 2 columns. (Here I am using a QStandardItemModel). I want to move up/move …

qt qt5 qtableview qt4.8 qstandarditemmodel
Change QSortFilterProxyModel behaviour for multiple column filtering

We have a QSortFilterProxyModel installed on a QTableView and two (or more) QLineEdit for filtering the view (based on the …

qt qt5 qtableview qsortfilterproxymodel
Connecting QTableView selectionChanged signal produces segfault with PyQt

I have a QTableView in a PyQt application, and I want to keep track of when the selection changes. I've …

qt user-interface pyqt qtableview
How to get list of headers of a QTableView?

I have a QTableView object in my dialog. I need to access the horizontal headers of this table and put …

c++ qt qtableview
How to trigger the edit mode of an item in a QTableView?

I'm using QTableView and QStandardItemModel now. In the QTableView, if you double-click a cell, this cell will get into edit …

user-interface qt qt4 qtableview qt4.6
How to create a filter for QTableWidget?

I'm trying to create a filter for QTableWidget with QLineEdit in PySide. I've seen some tutorials using QSortFilterProxyModel for C++ …

python qt pyside qtableview qsortfilterproxymodel
QTableView output save as .csv or .txt

I wrote the below code for a qt gui to view the query output in a QTableView(Model oriented). now …

c++ qt csv qt4 qtableview
Read and write to a file from a QTableView

How can I read and write to a text file date enter to a QTableView? This is what I have …

qt qtableview qstandarditemmodel qmodelindex