In the following, I want to prevent the disabled fields (grey) from being tabbed to. These are auto-calculated fields, so the user can’t change their value.

Usually would add tabindex=“-1” , but not sure how in bubble…

Anyone know how in bubble?

Check “This input is disabled”

Yeh it’s a disabled input, but it can still be tabbed to.

Basically after a user tabs to the gst checkbox, I want the next tab to go to the first input on the next row.

you can add tabindex="-1" by making sure you’ve got the classify plugin installed, and adding {tabIndex: "1"} as the element ID.

That said, I’m not sure why but, in my testing, tabindex="-1" doesn’t work as expected in Bubble…

So try setting tabindex="0" or even tabindex="" and see if that works (they both work for me).

This topic was automatically closed after 70 days. New replies are no longer allowed.