включает возможность оставлять комментарии к карточкам
webix.ui({
view:"kanban",
comments:true,
data:[
{ id:1, text:"Test card", comments:[
{id:1, value:"I'm on it, just need more info on the getParent() method"},
{id:2, value:"Good job, you can move this to verified"}
]}
]
});
Компонент с комментариями можно настроить, используя свойства компонента Comments:
webix.ui({
view:"kanban",
comments:{ currentUser:true }
});
Наверх