split

allows creating split tasks

boolean split;

Example

webix.ui({
  view: "gantt",
  split: true,
});


Default value:

false

Related samples

Details

Split tasks are tasks with subtasks that are displayed on one and the same row. If the property is set to true users can:

  • create split task on one line with the original task
  • mark a parent task as split or regular via the form
  • create regular tasks using drag-n-drop.

Note that unlike regular tasks, split tasks are not displayed as branches and cannot be expanded.

See also
Back to top