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