scrollbar

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

Hi,

you need to set minWidth or width to Kanban. In the other case, Kanban width will be adjusted to screen width:

webix.ui({
  scroll:"x", 
  view: "scrollview",
  body:{
      minWidth: 1500,
      view:"kanban",
      ...
   }
});

huge thanks