Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
362 views

Showing a Hidden QTableView Column

I'm trying to do something that seems like it should be very simple, but the more I look into it I wonder if it's a Qt bug. So, I have a QTableView that has columns that can be shown/hidden as the ...
8
votes
2answers
885 views

QTableView has unwanted checkboxes in every cell

I'm just getting started with Qt programming, and I'm trying to make a simple tabular data layout using a QTableView control with a model class of my own creation inheriting from QAbstractTableModel. ...
5
votes
8answers
7k views

selected Rows/Line in QTableView copy to QClipboard

First of all, sorry for bad English. It's about C++ and Qt. I have a SQLite-Database and I did it into a QSqlTableModel. To show the Database, I put that Model into a QTableView. Now I want to ...
4
votes
2answers
2k views

Qt - QTableView - Clickable button in table row

I require the ability to have a button/link within a table row of a QTableView. This is to open a dialog to allow that row to be edited more efficiently. After hours of looking on the web I am yet to ...
4
votes
4answers
3k views

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 using a custom subclass of QAbstractTableModel as the model for the QTableView. Right now, we ...
3
votes
1answer
53 views

Fitting columns in QTableView

In my TableModel I've two columns. This model is connected to the TableView. How can I set them up so those two columns fill the tableView so there is no free space? EDIT:
3
votes
1answer
85 views

How to disable Autoscroll to top in a QTableView when the underlying model changes?

I have created my own class that derives from QTableView, the associated model is is derived from QAbstractTableModel. The data in the model is performance data(process name, mem usage etc.) which ...
3
votes
1answer
403 views

Qt QTableView draw border around active cells

I'm trying to implement behavior similar Excel in a QTableView, where a border is painted around the entire current selection. I have tried this what feels like a hundred different ways and keep ...
3
votes
2answers
568 views

QTableView + QSqlTableModel - how to read id of selected row

I'm using QTableView with QSqlTableModel. In my view I don't display the column containing record id. How can I acquire id of the selected row if its not displayed in any column ? Thanks for help :)
3
votes
2answers
492 views

QTableView with icons in rows

I have a QTableView showing rows of a database table. In this table I have a column called data type and I have icon images for each type. How can I add these icons in front of each data type? Here's ...
3
votes
1answer
620 views

Set initial text when editing a QTableView cell

I've subclassed QAbstractTableModel and overrode the flags() method so that some of the table cells are editable. The problem is that when I start editing, the existing cell value is erased. I would ...
3
votes
2answers
2k views

QTableView - what signal is send when user selects a row by clicking to it?

Is there a signal which is emmited when user selects a row in QTableView by mouse (sigle selection model)?
2
votes
1answer
49 views

How to update QAbstractTableModel and QTableView after sorting the data source?

I have a custom data structure that I want to display in a PyQt application using a QTableView. I'm using a subclass of QAbstractTableModel to communicate with the data. The data structure itself is ...
2
votes
1answer
359 views

PyQt QTableView not displaying icons after update to PyQt 4.5.1

I'll try to be as clear as possible, though this is all a bit muddled in my head. I have a PyQt application that has been working for about a year now. After updating to PyQt 4.5.1 (from 4.3.3) none ...
2
votes
4answers
452 views

How to get right row height in Qt for QTableView object?

From this screenshot you can see a lot of space inside the rows: I've used these functions to get resizing: resizeRowsToContents(); resizeColumnsToContents(); How can I get a better fit for ...
2
votes
2answers
630 views

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 mode and you can edit its content. Now I have a problem, I want to ...
2
votes
2answers
1k views

How to make sure columns in QTableView are resized to the maximum

I'm not sure how to ask this, so, feel free to ask for more information. It seems that tableView->resizeColumnsToContents() will only resize all the columns based on data in current view. Which ...
2
votes
1answer
740 views

QTableView sorting signal?

I use QTableView + QStandardItemModel to show some data (data stored in some other data structure), and this table view is sortable. Since it is sortable, when sorting this model, I also need to sort ...
2
votes
3answers
2k views

How to interact with checkbox actions ? (QTableView with QStandardItemModel)

I'm using QTableView and QStandardItemModel to show some data. For each row, there is a column which has a check Box, this check box is inserted by setItem, the code is as follows: int rowNum; ...
2
votes
1answer
810 views

How can I set the line style of a specific cell in a QTableView?

I am working with a QT GUI. I am implementing a simple hex edit control using a QTableView. My initial idea is to use a table with seventeen columns. Each row of the table will have 16 hex bytes and ...
2
votes
1answer
363 views

How to implement frozen rows in a QTableView

I'm looking for an example on how to freeze the last row in a QTableView?
2
votes
1answer
293 views

How to open an URL in a QTableView

What is the best way to present a clickable URL in a QTableView (or QTreeView, QListView, etc...) Given a QStandardItemModel where some of the columns contain text with URLs I'd like them to become ...
2
votes
2answers
3k views

Show other data in QTableView with QItemDelegate

I have a QTableView connected with an QSqlTableModel. In the first column, there are only dates at this format: 2010-01-02 I want this column to show the date at this format (but without changing the ...
1
vote
1answer
27 views

Use QTableWidget's sorting abilities for a custom model

I have implemented a QTableView and need to sort my table. However, I like the way QTableWidget handles sorting. Can I somehow "grab" or use QTableWidget's sortItems() functionality in my QTableView ...
1
vote
1answer
36 views

Adding row to QTableView slows the app down after a lot of inserts

I have a QTableView thats using a model i made which extends the QAbstractTableModel. The model uses a QList< QVector<QString> * > as the collection. The table view is used to ...
1
vote
1answer
49 views

QTableView change row color based on a value

I have a QTableView that i implemented with my own model subclassed from QAbstractTableModel. I want to be able to change the row color to red when one of the fields in the row has a certain value. ...
1
vote
2answers
60 views

QTableView doesn't seem to react on dataChanged signal

Shown below is the my custom table model. I am trying to use that tablemodel together with a QTableView. If the method append of the table model is called I would expect the table view to update its ...
1
vote
1answer
63 views

Why doesn't QTableView row count update?

I created a QAbstractTableModel called PresetTableModel, and connected it to a QTableView. I implemented the rowCount, columnCount, and data functions. Everything works if I have rowCount return a ...
1
vote
1answer
65 views

QStandardItem converts unsigned int to int after editing

I create a QTableview with a QStandardItemModel, after editing the QStandardItem the type changed from unsigned int to int. This behavior just happen to unsigned int and just while the user is editing ...
1
vote
1answer
82 views

Sizing to fit rows and columns in a QTableView is very slow

I've got a QTableView with a custom model, and it works fine. However, when I start the program, I want the rows and columns to be sized to fit because by default they take up too much space. I should ...
1
vote
0answers
78 views

PyQt: QStyledItemDelegate in QTableView on Windows Vista/7?

I would like to get a cell/row to look like this in a QTableView: When running Ubuntu, the QStyledItemDelegate works for both the QTreeView and the QTableView, but on Windows, it only works on ...
1
vote
1answer
237 views

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 the cells in the table. Is it possible to have a different right-click context ...
1
vote
1answer
44 views

Qt QTableView top-to-bottom flow

I have a grid that's display using a control that inherits from QTableView. Right now the grid is displayed left-to-right and then as things overflow, it goes to the next row like this ----------- | ...
1
vote
0answers
436 views

HowTo create model/view QTableView with custom (non-editable) delegates?

Here is what I'm trying to get ( this is a QTableView widget + MVC based on QAbstractTableModel with multiply delegates ): Notes: Delegates a not working as editors, they are ONLY viewers! I'm ...
1
vote
1answer
105 views

how to align qtableview row at the right side in pyqt4?

How to align the content of the qtable view in the right? I use this class in making my table. class MyTableModel(QAbstractTableModel): def __init__(self, datain, headerdata, parent=None, ...
1
vote
2answers
211 views

QTableView: how to set the search column

I'm using a QTableView and a subclass of QAbstractTableModel as its model. I saw that (by default) when the user types something the QTableView start searching the typed text in the first column and ...
1
vote
2answers
262 views

QTableView with a column of images

I have a QTableView to display some informations of a database in the form of a grid. One of the fields is a path to an image and I would like to display these images in my table. I tried something ...
1
vote
1answer
201 views

How to change the height of a horizontalHeader (QTableWidget)

I have a QTableWidget and I want to change the size of the horizontalHeaders. But there is only a function to set the width. But how do you change the height? Hope someone can help me.
1
vote
1answer
192 views

How do I call dataChanged

The following is my add a row class. It is called by the code, not the table and I want it to properly call dataChanged when a new row is added, although this isn't working, the table doesn't do ...
1
vote
1answer
321 views

custom delegate doesn't follow when reordering QTableView

I'm using a custom delegate to display a column of comboBoxes in my QTableView. In addition to the default selection issue (enter link description here) I have a problem when I reorder the data of my ...
1
vote
1answer
83 views

Is any way to show text line at the top of QTableView exist?

I need something like on the picture below but I can't find a way to do it using Qt 4.3.3...
1
vote
1answer
772 views

selected item of comboBox in custom Delegate from QTableView

I use a custom delegate to display a column of comboBoxes in my QTableView. The values are the same for all the comboBoxes so it's not really the population part that gives me trouble. I want them ...
1
vote
1answer
395 views

QTableView problems with row

Hello guys i new to QT and i am doing Qtableview to add information in 3 columns to infinite row like |--1--|--2--|--3--| |--1--|--2--|--3--| |--1--|--2--|--3--| this is how i want to ...
1
vote
1answer
525 views

How do I keep my QAbstractTableModel in sync with my data store?

In my app, I have a class for keeping a list of items: class Database : public QObject { Q_OBJECT public: Database(QObject *parent, const QString &name); const Entry& item(int ...
1
vote
1answer
226 views

Qt: how to get the size of QTableView?

I have a QTableView, that the Model is bound to. I fill the model (using model->setItem) and then would like to adjust the widths of the columns on the table. I would like to use the relative size, so ...
1
vote
1answer
246 views

Keep the selection after filtering a QTableView with a QSortFilterProxyModel

I created a QTableView linked to a QSortFilterProxyModel linked to another model. Under the QTableView (in the GUI) there is a QLineEdit used for "searching" an element in the view. My idea is to ...
1
vote
2answers
1k views

how to customize QTableWidget through QT stylesheet?

I'm trying to customize a QTableWidget through stylesheet and I'm only limited to the items descibed here. How do I change the spacing in the horizontal header of the table? the size of its header ...
1
vote
1answer
845 views

How to update data in QAbstractTableModel with different row count

I am developing an application that updates the data in QTableView from apache server once per second. The server sends data as XML table. Number of columns is constant, but the number of rows changes ...
1
vote
1answer
455 views

What is the best way to display an animated icon in a QTableView?

I've been struggling with this for some times know, and can't seem to find the right way to do this. What I would like is the ability to use an animated icon as a decoration for some of my items ...
1
vote
2answers
1k views

Qt/C++: Getting the data at a certain cell in a QTableView

I'm trying to get the text at a certain cell in a QTableView. For example: QString codestring = "*" + ui->tblInventory->indexAt(QPoint(0,2)).data().toString() + "*"; This should get the text ...

1 2 3