show()
shows an item of Menu
show(ids: (string | number) | (string | number)[]): void;
Parameters:
ids: string | number | array
- optional, an ID or an array of IDs of items
Example
menu.show("save_btn");
// several at a time
menu.show(["cancel_btn","del_btn"]);
Related sample: Menu. Show / hide menu item
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 Menu items
menu.show();