Hi,
I the attached example, how do I rename or get the value of the tabbar name.
http://webix.com/snippet/5d5a45f8
I would like to rename ‘List’, ‘Form’ and ‘Empty’
Hi,
use the following code:
$$('tabbarID').config.options[option_index].value = "New name";
$$('tabbarID').refresh();
Thank you
How to hide a specific tab?. I have tried hide() method, but no change.
Any help?. I want to hide or disable tabs. disable() and hide() doesn’t help
Unfortunately, there’s no way to hide the particular tab, but you can use the addOption/removeOption API:
Thank you. How to make a specific tab active/select via API?.
{
view:"tabbar",
value:"tab-id",
. . .
}
or
$$('tabbar').setValue("ID")