toolbar

defines whether the toolbar is visible or hidden

boolean toolbar;

Example

webix.ui({
  view:"reports",
  url: "https://docs.webix.com/reports-backend/",
  toolbar: false // hides the toolbar initially 
});

Related samples

Details

The reactive property hides/shows the toolbar. Refreshing is not required as the change will be applied immediately.

You can also access and alter this property via the widget state:

$$("myReports").getState().toolbar = true; // shows hidden toolbar
See also
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.