Select table with tab key
Solved
QML and Qt Quick
-
Hi @Sikarjan
Try setting activeFocusOnTab. -
If you want to set up a custom tab focus chain, you can try to use KeyNavigation to do so. Something like this:
ComboBox { id: combo1 //... KeyNavigation.tab: combo2 } ComboBox { id: combo2 //... KeyNavigation.tab: table } TableView { id: table //... KeyNavigation.tab: combo1 }