QML TreeView set active item
-
-
Hi,
Sorry for replying to this old topic but I have a similar problem :
I would like to set the currentIndex (which is read only for a TreeView) in order to navigate throught items from the given currentIndex using the keyboard.
Settings selection is OK, but it does NOT set the currentIndex, so pressing down arrow selects the first item of the TreeView, as currentIndex is still undefined at this step...
Here some code to select :
var index = controller.activeFolderIndex;
treeViewSelectionModel.setCurrentIndex(index, ItemSelectionModel.ClearAndSelect);
//then I would like something like : treeView.currentIndex = index;Any idea ?