Column Percentage Width

Hello,

i s it possible to include percentage with to the columms?

you can achieve that using fillspace property of columns:

webix.ui({
  view:"datatable",
  columns:[
    { id:"rank",	header:"", css:"rank", fillspace: 0.5},
    { id:"title",	header:"Film title",fillspace: 10 },
    { id:"year",	header:"Released" , fillspace:1	},
    { id:"votes",	header:"Votes", fillspace:2	}
  ],
  data:grid_data
})