I have to isolate controls of my form, toolbar controls, menu items, etc. from the rest of the page.
The documentation is pretty basic. Does anyone have or can point me to examples of usage?
Thank you.
I have to isolate controls of my form, toolbar controls, menu items, etc. from the rest of the page.
The documentation is pretty basic. Does anyone have or can point me to examples of usage?
Thank you.
Basically, that’s it. The isolate property of a parent control (e.g. layout) marks IDs of child items so that these IDs can be reused in other part of the application. At the same time child elements of an isolated view can be accessed only via the parent, like :
$$("col1").$$("myform");
http://webix.com/snippet/b93e609a
http://docs.webix.com/api__link__ui.toolbar_isolate_config.html
Thank you.