Skip control when press TAB key

Hi All,

I’ve a nice user requirement: Skip certain controls when you navigate using the TAB key. How can I do this with Webix? In raw HTML you can set the tabindex property, but I do not see such a property on the Webix controls. Please can you guide me in the right direction?

BR,
Martin

Hi, @zevenbergm
for text you can simply use it’s attributes property

{view:"text", attributes:{tabindex:-1}}

but this will not work for checkbox, richselect and other not input element based views
but you can extend base button component for your needs
check this
https://snippet.webix.com/jxmdft6k
in this case you can use noTabStop for text as well

@integral Thank you!