I have a QTreeView with QFileSystemModel as model.
The QTreeView has SelectionBehavior set to SelectRows.
In my code I read a dataset to select and then sele
If you want to select a full row, you should use the following:
selection->select(idx, QItemSelectionModel::Select | QItemSelectionModel::Rows);
Note that you may sometimes first want to clear the selection:
selection->select(idx, QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows);