users

defines the collection of users in Kanban

array|string users;

Example

webix.ui({
    view:"kanban",
    users:[                                                                                 {id:1, value:"Ambrose Bierce", image:"../common/imgs/bierce.jpg"},                  {id:2, value:"Daphne du Maurier", image:"../common/imgs/du_maurier.jpg"},           {id:3, value:"Shirley Jackson", image:"../common/imgs/jackson.jpg"}             ],                                                                                  cols:[
        { header:"Backlog", body:{ view:"kanbanlist", status:"new" }},
        { header:"In Progress", body:{ view:"kanbanlist", status:"work" }}
    ],
    data:[
        { id:1, status:"new", text:"Test new authentication service" },
        { id:2, status:"work", user_id:5, text:"Performance tests" }
    ]
});

Related samples

Details

Each object in the array must contain value - the name of a user. It can also contain the user image.

The users setting accepts inline data from, a DataCollection or from a file/script.

webix.ui({
    view:"kanban",
    users:"./data/users",           data:"./data/tasks"
});
See also
Back to top