Tab Order - Floating labels


#1

I am using inputs similar to the Material design style with floating labels.
I found this input widget online, and it works OK, but the problem is that that the tab order includes the floating label. So instead of tabbing to second input, the cursor will jump up to the label.

Is there a way to skip the label. In real software, the label is not included in the tab order.

paymentAmount.rp (75.9 KB)


#2

So, in your “fieldLabel” dynamic panel you have a Text Field widget (also named “fieldLabel”), which is a focusable element, so it gets focus as a user tabs through input elements. However, you are never accepting nor processing any input with this widget–nor do you need to. So, if you replace these Text Field widgets with Rectangle widgets, they will never get focus. You have a number of these in both the “fieldLabel” and “floatingLabel” dynamic panel states for each input group.

See Page 2 of this updated file for a fix.
paymentAmount.rp (116.4 KB)


#3

That works great. Thank you for taking the time to help and for the informative explanation.


closed #4

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.