Top "Qtableview" questions

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

How to delete row/rows from a qtableview in pyqt?

I am using QStandardItemModel for my qtableview. import ui_my_viewlogs import os from PyQt4 import QtCore, QtGui class my_…

python qt pyqt pyqt4 qtableview
QTableView is extremely slow (even for only 3000 rows)

I have a table with 3000 rows and 8 columns. I use the QTableView. To insert items I do: QStandardItem* vSItem = new …

qt qtableview
Qt QTableView how to have a checkbox only column

We are using a QTableView with Qt 4.6.3, and need a column that only has a checkbox in each cell. We're …

qt qt4 qtableview qabstracttablemodel
How can I get right-click context menus for clicks in QTableView header?

The sample code below (heavily influenced from here) has a right-click context menu that will appear as the user clicks …

python header pyqt contextmenu qtableview
How to get cell value from selected row (QTableView)?

I have a QTableView and I need to the get value (string) from the first cell of the selected row (…

c++ qt qtableview
checkbox and itemdelegate in a tableview

I'm doing an implementation of a CheckBox that inherits from QitemDelegate, to put it into a QTableView. the problem is …

qt qtableview qitemdelegate qcheckbox
How to select QTableView row with one click

When one of the QTableView's QModelIndex is clicked I want to select an entire row of the same-row-indexes. To accomplish …

python qt model pyqt qtableview
QTableView - what signal is sent when user selects a row by clicking to it?

Is there a signal which is emitted when the user selects a row in QTableView by mouse (single selection model)?

qt qtableview
How to color or make text bold for particular cell in QTableView?

I have used QTableView to saw tabular data in my Qt program and somehow I need to differentiate some cells …

c++ qt qt4 qtableview
Qt: start editing of cell after one click

By default the cell in QTableView starts being edited after double click. How to change this behavior. I need it …

c++ qt delegates qtableview model-view