Fetching rows in QtreeView
QTreeView has possibility to set current row by pressing beginning of string which in first column ( in basicsortfilter example, after pressing 'R' , current row will be set to row with first character 'R' in column(0).
Can i change column number for this quick search?
Re: Fetching rows in QtreeView
skimming quickly over the Qt source (QAbstractItemView::keyboardSearch()) I would say that you can not influence that column.
Check for yourself, that's why you got the sources of Qt! ;)
HTH
Re: Fetching rows in QtreeView