This item takes space on the sidebar and is used for aligning controls.
A new Spacer can be created with the help of the add() method of Tree Collection:
sidebar.data.add({
type:"spacer"
});
Related sample: Sidebar. Spacer
Spacer can have two attributes:
type | (string) the type of a control, set it to "spacer". If not specified - the "navItem" type is applied by default. |
id | (string) the id of a control, auto-generated if not set |
You can hide and show Spacer with the methods of sidebar:
sidebar.show(id);
sidebar.hide(id);
Check the full list of available operations in the Sidebar API and Tree Collection API.
Back to top