tags

задает набор тегов для карточек в Kanban

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 может быть:

  • массивом
  • DataCollection
  • путем к файлу или скрипту
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" }}
    ]
});
Наверх