showBatch of ui.gridlayout, Methods Webix Docs
booleanoptional, the mode of showing elements
Example
// the elements with the batch name "b2" are shown initially
webix.ui({
view:"toolbar", id:"mybar", visibleBatch:"b2", cols:[
{view:"button", value:"Save", batch:"b1"},
{view:"button", value:"Cancel", batch:"b1"},
{view:"button", value:"Edit", batch:"b2"},
{view:"button", value:"Back", batch:"b2"}
]
});
// hides elements with the batch name "b2", shows those with the batch name "b1"
$$("mybar").showBatch("b1");
// shows elements with the batch names "b1" and "b2"
$$("mybar").showBatch("b1", true);
// shows elements with the batch name "b2"
$$("mybar").showBatch("b1", false);
Related samples
Details
The mode parameter is optional. It can have the following values:
- true - the method shows both the elements with the previously defined batch name and with the one defined by the 1st parameter
- false - the method shows only the elements with the previously defined batch name
- if the parameter isn't defined, the method shows only the elements with the batch name defined by the 1st parameter
See also