disable()
disables and dims an item(s) of Ribbon
disable(ids?: (string | number) | (string | number)[]): void;
Parameters:
ids: string | number | array
- optional, an ID or an array of IDs of items
Example
ribbon.disable("save_btn");
// several at a time
ribbon.disable(["cancel_btn","del_btn"]);
Related sample: Ribbon. Enable / disable Ribbon item
Starting from v7.0, it is possible to disable all items at once by using the method without the parameter:
// disables all Ribbon items
ribbon.disable();