resize column manually

Hello,

I have a table and I want to resize table width clicking on the border line on a column. Is it possible with webix ? I don’t find anything about it.

columns:[
{ id:“rank”, header:"#", width:50, sort:“int”, css:“rank”},
{ id:“title”, header:“Film title”,width:200, sort:“string”},
{ id:“year”, header:“Released” , width:80, sort:“int”},
{ id:“votes”, header:“Votes”, width:100, sort:“int”}
],

Currently my table width is fixed. For instance I would like to widen the first column cliking on the border.

Thanks in advance

Do you mean like this

http://docs.webix.com/samples/15_datatable/07_resize/03_all_resize.html

http://docs.webix.com/api__link__ui.treetable_resizecolumn_config.html

thanks it’s exactly what i was looking for