Hi again, how can we do to add a horizontal scrollbar in kanban view. i try this exemple but i didn’t succeed doing it (http://docs.webix.com/samples/04_template/10_scrollview.html)
webix.ready(
function(){
webix.ui({
view:"kanban",
id: "myBoard",
type:"space",
//add a horizontal scrollbar here
cols:[
{ header:"Backlog",
body:{ view:"kanbanlist", status:"new", type: "avatars"}},
{ header:"In Progress",
body:{ view:"kanbanlist", status:"work", type: "avatars"}
},
{ header:"Testing",
body:{ view:"kanbanlist", status:"test", type: "avatars" }},
{ header:"Done",
body:{ view:"kanbanlist", status:"done", type: "avatars" }}
],
}
on:{
onAvatarClick: avatarClick
},
data:base_task_set
});
});