dtable = new webix.ui({
container: "box",
view:"datatable",
columns:[
{ id:"data0", header:"", width:50},
{ id:"data1", header:"Film title", width:200},
{ id:"data2", header:"Released" , width:80},
{ id:"data3", header:"Votes", width:100}
],
autoheight:true,
autowidth:true,
datatype:'csv',
url:"codebase/data.csv"
});