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