QTableView is a Qt class providing a default model/view implementation of a table view.
0
votes
0answers
15 views
QT bind to selective tables
I'm working on a Qt application in which I have a QTableView that I would like to selectively pick a table to display info in combo boxes .
Sample Database
tblMainView
int: id
int: ...
0
votes
1answer
23 views
How to display content of multiple QSqlTableModels in one QTableView?
I have a MySql table, let's call it x:
CREATE TABLE x (
Id int unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
A int unsigned NOT NULL,
B int,
FOREIGN KEY (A) REFERENCES y(Id)
);
And ...
0
votes
0answers
22 views
Why does ::TableView.model return nilClass when Nokogiri is used?
EDIT
The problem was with something else so the trouble wasn't really Qt, still I don't know why this happened.
The thing was that in the method display_filesize @yt.get_filesize(row_id, format) I ...
1
vote
1answer
45 views
QTableView real-time filtering
My situation looks like this: I have QTableView and LineEdit. I'd like to show data which contains value in LineEdit in real time. I guess I should use QSortProxyFilterModel, but I don't know how to ...
1
vote
1answer
34 views
QTableView adding items crash
I am new to Qt. My program is crashing when adding items read from XML to QTableView.
XML file:
<?xml version="1.0" encoding="UTF-8"?>
<Accounts>
<Host>host1</Host>
...
0
votes
0answers
21 views
Resize QHeaderView for both stretch and user interaction
In QHeaderview, is there any way to set the resize mode of a coloumn to both QHeaderview::interactive and QHeaderview::stretch at the same time? The setResizeMode function seems to take only one ...
0
votes
0answers
40 views
QTableView, conditional row selection in ExtendedSelection mode
I use QTableView in ExtendedSelection mode with SelectItems behavior.
I would like to implement the following behavior:
1) When only one cell is selected - do nothing
2) When more than one cell is ...
0
votes
1answer
25 views
QStandardItemModel inside Qtableview
I am using QStandardItemModel inside QTtableview. Here i have two button & Qtableview inside my mainwindow.
I need only 4 columns inside this. And rows will vary.Two Buttons will add/delete a row ...
2
votes
1answer
27 views
Relative size hints for QTableView columns
I have a QTableView with my own custom model. It contains a table of columns of text, each of which with wildly differing maximum sizes.
I know I can implement my own item delegate to provide a size ...
0
votes
1answer
14 views
Disable editing of QTableView in rubyqt
I'm trying to disable editing of QTableView in rubyqt. It's supposed to be done by setting triggers to QAbstractView::NoEdiTriggers:
TableView.setEditTriggers(QAbstractView::NoEditTriggers);
The ...
0
votes
2answers
87 views
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 used to specify a QComboBox to represent data in a QTableView cell but it is not ...
0
votes
1answer
113 views
Qt Table Widget Vertical & Horizontal Header Becoming Invisible
I've added a table widget to a form and set the vertical and horizontal headers as visible in the property editor. However, they are sometimes invisible during actual execution. If I actually look at ...
0
votes
1answer
25 views
QStandardItemModel removeRows does not remove signals on cells?
Got a QStandardItemModel on my QTableView and trying to remove all the rows in it.
I was first calling a method I created with a call to takeRow, which does not delete the object if I'm right.
What ...
0
votes
3answers
98 views
QTableView with multiline cell
How can I create a QTableView multiline cell?
I'm filling the table using the code bellow.
But Whem GetDescription() returns a long string, the content is terminated with ...
There is some way to ...
0
votes
0answers
43 views
How to enable copy QTableView/Widget contents in pyqt
I have a QTableView and QTableWidget, i want to enable copy the content of the table with Ctrl+C and past it in Excel.
i set the below properties for QTableView
TableV = QTableView()
...
0
votes
1answer
57 views
Paste entire column into QTableView from Excel
I am having an issue pasting into a QTableView from Excel when the user has copied by selecting an entire column in Excel, essentially putting every single row in the selected column, for the entire ...
0
votes
0answers
44 views
Rotate QTableView?
How to make the table headers and a tuple (100% that is will be the only) in QTableView
became in vertical position? For example in the property editor as in Qt.
0
votes
1answer
44 views
What's the “editing finished” signal of a QTableView item?
I want to know when user has finished editing a QTableView item, so I checked all the available signals, but I only found ones that will emit before the edit.
So, what should I do now?
Running Qt ...
0
votes
0answers
66 views
QTableView mouse double-click event
I have instance of QTableView. I want to open a dialog to edit data from selected row. When I use command from popup menu or shortcut it works as expected, but when I use double-click to show the ...
0
votes
1answer
28 views
QTableView becomes very slow when multiple rows are selected
I have a model of about 1000 rows, with one of the columns changes every second.
I placed a cusom sort/filter model between the real model and the table view so as for the rows to be filtered ...
0
votes
0answers
41 views
What does QAbstractItemView.reset() actually do? Particularly for QTableView
The documentation says that it :
QAbstractItemView.reset (self)
This method is also a Qt slot with the C++ signature void reset().
Reset the internal state of the view.
Warning: ...
0
votes
0answers
31 views
QTableView change background color on button click.
I'm new to Qt so go easy on me folks. I want to change the background color of some record/row in the QTableView, when a certain button is pressed or a function is called. I have gotten this to work ...
0
votes
2answers
63 views
Qt: c++: How to create a SIGNAL/SLOT when selecting a row in QTableView
I have a QTableView which is working properly showing my model on the GUI. however, I would like to create a "SIGNAL/SLOT" that works when I select a row from the QTableView.
how can i do that?
0
votes
2answers
81 views
'Manual' multi-selection in QTableView and partially hidden grid
I know that topic about multi-select arise at least once, but honestly neither can't find it anymore, nor remember that it had and decent solution.
There are two questions I propose to discuss:
1) ...
1
vote
1answer
53 views
QDataWidgetMapper only updates first index to QSqlRelationalTableModel
I have a problem regarding parts of the QT framework. I am using QT 5.0.2 and am developing on Windows at the moment.
In my application I have a Tableview set up with a QSqlRelationalTableModel. Next ...
0
votes
1answer
64 views
Qt: c++: QTableView does not display my Model
I am creating a model using this code:
QStandardItemModel table_model(4,4);
for(int row=0; row<4; row++){
for (int column=0; column<4; column++){
QStandardItem* item = ...
0
votes
1answer
137 views
QT how to use QTableView to display a QMap within a QList
I am having a QList as follow:
QList< QMap<QString, QString> > x;
for example:
table(1) <name<name(1),ABC> >
table(1) <age<age(1),10> >
I would like to have ...
0
votes
0answers
58 views
Resetting of QTableView after layout has been changed
I have QAbstractProxyModel with QSqlTableModel as a source model. My model switches rows with columns and adds some rows (columns in the case of DB table) to the model.
I show in a QTableView only few ...
0
votes
1answer
93 views
Issue reading in line of file with Qt and vectors
I have an issue in Qt where I am running code to generate a vector of class objects and output them to a TableView. Whenever I run the code it only reads the first line of the file. I put the same ...
0
votes
1answer
91 views
pyQt QTableView does not display number (int, float, etc.)
I have a problem with QTableView and putting data into it. Text (strings) are displayed fine and can be sorted and filtered using a proxy and QStandardItemModel
self.material_model = ...
0
votes
0answers
58 views
How to edit data on QStandardItemModel & QTableView after call QTableView::setModel()
guys!!
I'm trying to populate a list of products into a QStandardItemModel that will be used by a QTableView. But I cant cange these data after the program starts.
How can i do it? Change the data ...
0
votes
1answer
104 views
Qt: QLineEdit cursor moves to end after textChanged() or commitData()
I have a QTableView with one column that uses a QLineEdit as its editor delegate, and other columns that need to update dynamically as the user types into the QLineEdit (e.g. one of the columns ...
0
votes
0answers
8 views
signal generated on clicking vertical index of QTableView with QStandking
I am using QTableView with QStandardItemModel when I have to disable content (clicking and editing both) and on clicking vertical index i have to generate a signal(to do furthur operation ) can you ...
0
votes
0answers
147 views
QTableView Qt : Changing selection behavior of Table
I am using QTableView in Qt and I have one table in which each cell has different text color. I have selection behavior select entire row. But when I select any row, text color changes to white for ...
1
vote
1answer
36 views
QSortFilterProxyModel breaks columnWidths
What is the standard practice in keeping column widths saved within a QTableView which is having certain columns hidden/removed via a QSortFilterProxyModel (in arbitrary order)? Note that I'm talking ...
0
votes
1answer
67 views
How to clear QTableView
i have a QTableView. I am Querying data from database using QtSql.QSqlQuery.
SQL = 'SELECT * FROM table1'
Query = QtSql.QSqlQuery(database)
Query.prepare(SQL)
Query.exec_()
model = ...
0
votes
1answer
58 views
How to show icons use QSqlRelationalTableModel and QTableView in every row
Now,I am try to use QSqlRelationalTableModel and QTableView to show my data in database,according to the properity "fileType" such as "doc,txt,exe,sln" to show a icon in the first column.
...
0
votes
1answer
75 views
QTableView's cells are empty, but headers show up
I created a delegate pretty much copied from Qt's Spin Box Delegate Example and I'm trying to fill a QTableView. However, I'm getting a strange problem where the table headers show up but the cells ...
1
vote
2answers
285 views
Basic concept of Qt model/view and QTableView
I want to create a software that will browse some database tables and users will be able to edit these tables. Following my reading of this link, I tought that model/view was a good approach for what ...
1
vote
1answer
41 views
Centralize QTableView in window with vertical spacers
I am trying to create a main window (fixed size) that contains a QTableView, with QSpacerItems above and below, in order to centralise the table (vertically).
(Sorry, can't post an image, ...
1
vote
1answer
123 views
QDataWidgetMapper and QAbstractTableModel
I have a QAbstractTableModel displayed by a QTableView. The table has 2 columns and a couple of rows. Each cell is a QLineEdit. My question is if there is a way of using QDataWidgetMapper::addMapping ...
3
votes
2answers
181 views
Smooth lazy loading and unloading of custom IndexWidget in QListView
I am writing an application that makes use of a custom QWidget in place of regular listitems or delegates in PyQt. I have followed the answer in Render QWidget in paint() method of QWidgetDelegate for ...
0
votes
1answer
80 views
How to set QTableView as a cell of QTableView
I have QTableView - mainTableView, in some cells of which I need to show another QTableView - cellTableView.
Actually I found 2 ways:
1) Use pTableView->setIndexWidget
2) Use ...
0
votes
0answers
32 views
Resize QWidgets
My simple GUI:
All of those sub-widgets are QDockWidgets. Three of them contain QGraphicsViews, the other one
a QTableView. Whats the best way to tell the table-containing widget to always occupy ...
0
votes
1answer
181 views
QTableView not expanding/reducing when QMainWindow is resized
I have a QMainWindow.
Inside the QMainWindow, I have a central widget.
For the central widget, I have a QVBoxLayout.
To this QVBoxLayout, I've added 3 widgets. One is a widget with some labels, ...
0
votes
0answers
139 views
PyQT QTableView Allow User Resizing of Vertical Header Width
I'm currently having problems with formatting my QTableView object. I have a model placed inside it and I have the verticalHeader and horizontalHeader labels set by
...
2
votes
1answer
89 views
QTableView advanced selection
I work with a QTableView and I would like to develop an advanced selection mode. I have not managed to do it with SelectionBehavior nor with SelectionMode.
The user shall be able to pick up some ...
0
votes
0answers
70 views
QT: Qtableview wrapping text
I am working with QtableView of Qt. I am facing one problem. I am not able to fix the content in to complete cell . In my case i have fix size of column and rows can be stretched. following is sample ...
0
votes
0answers
90 views
How to select a row in a continuously updating table?
guys.I'm working on a GUI for controlling some robots.
There is a table which shows the current states data about that robot.And the table is updated periodically from the data in the test server.When ...
0
votes
1answer
32 views
creating Custom Widget using QtDesigner PyQt4
Can anyone please suggest me best practice to create a Custom widget using PyQt4 ?
I want to see how to approach adding Qpushbutton or QCheckboxGroup inside the cells of QTable Widgets that will be ...



