I told you, you can't access data through the view.
You can use QAbstractItemView::currentIndex() to fetch the current item and then QAbstractItemModel::data() to access its data. If you need the whole row, repeat the process modifying the column in the index retrieved with currentIndex.
Bookmarks