Setting QtQuick control 2 tab order
-
wrote on 19 Oct 2019, 18:18 last edited by
Easy, fast keyboard-only data entry is crucial for my application. I am having trouble finding the documentation for specifying a tab order for my property sheets. I have TextField's, ComoboBox's, Button's, etc. that want to be able to tab between without using the mouse.
Thanks!
-
Easy, fast keyboard-only data entry is crucial for my application. I am having trouble finding the documentation for specifying a tab order for my property sheets. I have TextField's, ComoboBox's, Button's, etc. that want to be able to tab between without using the mouse.
Thanks!
wrote on 21 Oct 2019, 03:38 last edited by@patrickkidd Ah, now I get it. You set
KeyNavigation.tab: item
on each item to indicate the next item that should receive focus when tab is selected in that item. I would say you have to dig to understand this in the docs.Cheers
1/2