comments

enables card comments

boolean|object comments;

Example

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"}
        ]}
    ]
});

Details

Comments can be configured with all the possible options of the Comment widget:

webix.ui({
    view:"kanban",
    comments:{ currentUser:true }
});
Back to top