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