userList

defines a dropdown list for assigning tasks to users

boolean|object userList;

Example

webix.ui({
    view:"kanban",
    data:[
        { id:1, text:"Test Card", user_id:1 },
        { id:2, text:"Another Card", user_id:2 }
    ],
    userList:true,      users:[
        { id:1, value:"Margaret Atwood", image:"imgs/matwood.jpg" },
        { id:2, value:"Fannie Flagg", image:"imgs/fflagg.jpg" }
    ]
});

Related samples

Details

You can customize the user list and pass configuration properties to the userlist object:

webix.ui({
    view:"kanban",
    userList:{                          yCount:9,                       width:150                   }                           });

The settings are taken from the List component.

See also
Back to top