delimiter

sets a delimiter for Kanban card actions and tags if they are specified in Kanban configuration as a string

string delimiter;

Example

webix.ui({
    view:"kanban",
    delimiter:";",
    cols:[
      { header:"New", body:{ view:"kanbanlist", status:"new" } },
      { header:"In progress", body:{ view:"kanbanlist", status:"work" } }
    ],
    data:[
      { id:1, text:"New Section on Lists", status:"new", tags:"proofreading;docs" },
      // ...
    ]
});


Default value:

"," Back to top