Does it not select the first row?
Or do you want to put the row into edit mode?
See QAbstractItemView::edit() for that
Cheers,
_
Does it not select the first row?
Or do you want to put the row into edit mode?
See QAbstractItemView::edit() for that
Cheers,
_
Using the below code my Table issue resolved
QModelIndexList indexes = ui->TbleViewUserMgmt->selectionModel()->selection().indexes();
QModelIndex index = indexes.at(0);
on_TbleViewUserMgmt_activated(index);
Bookmarks