tags

defines the set of tags for Kanban board

array|string tags;

Example

webix.ui({
    view:"kanban",
    tags:[                                  {id:1, value:"webix"},              {id:2, value:"jet"},                {id:3, value:"easy"}            ],                                  data:[
        { id:1, status:"new", text:"Test new authentication service", tags:[1,2] },
        { id:2, status:"work", text:"Performance tests", tags:[3] }
    ],
    cols:[
        { header:"Backlog", body:{ view:"kanbanlist", status:"new" }},
        { header:"In Progress", body:{ view:"kanbanlist", status:"work" }}
    ]
});

Related samples

Details

Tags can be taken from an inline array or DataCollection or loaded from a file/script:

webix.ui({
    view:"kanban",
    url:"./data/tasks",
    tags:"./data/tags",     cols:[
        { header:"Backlog", body:{ view:"kanbanlist", status:"new" }},
        { header:"In Progress", body:{ view:"kanbanlist", status:"work" }}
    ]
});
Back to top