Documentation

tabFocus

defines whether the control will be included in the tab navigation order

boolean tabFocus;

Example

webix.ui({
    view:"combo",
    label: 'Fruit',
    tabFocus:false,
    ...
})

See also

Details

The default value is true, the control is included in the tab navigation order.

Back to top