projects

an array of projects

array projects;

Example

webix.ui({
    view: "todo",
    projects: [{ id: "ui", value: "UI Widgets" }, ...],
    ...
});

Details

Each object in the array should have the following properties:

  • id (string) - the id of the project
  • value (string) - the name of the project
Back to top