how to dynamically change the width of columns in the datatable?
$$(“mytable”).config.columns[0].width = newSize;
dtable.resize(); // not working
how to dynamically change the width of columns in the datatable?
$$(“mytable”).config.columns[0].width = newSize;
dtable.resize(); // not working
You can use
$$("mytable").setColumnWidth(column_id, newSize)
http://docs.webix.com/api__link__ui.treetable_setcolumnwidth.html
thanks