when user moves to new position in tableView via mouse or keyboard how do you get the current row number ?
something like thisrow= (tableView->currentRow().toint); //
:)
Printable View
when user moves to new position in tableView via mouse or keyboard how do you get the current row number ?
something like thisrow= (tableView->currentRow().toint); //
:)
try this
Code:
... int row = tableView->currentIndex().row(); ...
Thank You Spirit, I tried every thing but that !!:o