enable()
enables disabled items of Sidebar
enable(ids?: (string | number) | (string | number)[]): void;
Parameters:
ids: string | number | array
- optional, one ID or an array of IDs of items
Example
sidebar.enable("search");
// several at a time
sidebar.enable(["search", "currentButton", "edit"]);
Related sample: Sidebar. Enable/disable
Starting from v7.0, it is possible to enable all items at once by using the method without the parameter:
// enables all Sidebar items
sidebar.enable();