hide()
hides an item of Toolbar
hide(ids?: (string | number) | (string | number)[]): void;
Parameters:
ids: string | number | array
- one ID or an array of IDs of items
Example
toolbar.hide("save_btn");
// several at a time
toolbar.hide(["cancel_btn","del_btn"]);
Related sample: Toolbar. Hide / show items
Starting from v7.0, it is possible to hide all items at once by using the method without the parameter:
// hides all Toolbar items
toolbar.hide();