I created a QTableView with a QSqlTableModel. By standard, double-clicking on the cells will mark them and the user can edit them. I want, that the user isn't allowed to do that. He is allowed to mark the whole row by clicking on a single cell, but not to edit the cell. How can I do that?
|
|
|
|
|
|
|
Depending on whether you are coding everything or doing things in the designer, set
on the tableview object the appropriate calls will all be prefixed with |
|||
|
|
|
Try this:
|
||
|
|
|
|
Toggle off the table item's
|
||
|
|
|
|
Ideally you will want to use:
And then create a class that inherits from
return or use:
You will also want to look at
With the parameter: For reference: http://doc.trolltech.com/4.5/qtableview.html |
||
|
|
