readonly

toggles the ability to edit tasks

boolean readonly;

Example

webix.ui({
    view: "todo",
    readonly: true,
    ...
});


Default value:

false

Related samples

Details

If true, users can view but not edit tasks.

Back to top