readonly

toggles report editing and creation

boolean readonly;

Example

webix.ui({
  view: "reports",
  readonly: true, // disables report editing and creation
  url: "https://docs.webix.com/reports-backend/",
});


Default value:

false

Related samples

Details

The reactive property toggles report creation and editing. Refreshing is not required as the change will be applied immediately.

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

// disables report editing and creation
$$("myReports").getState().readonly = true;
See also
Back to top