Does Webix still remove columns from datatable? I found the webix datatable api documentation, but I can't find anything about deleting a column.
I finally figured it out. I was able to find a sample that included the correct code .
Relevant Section:
var columns = webix.toArray(grid.config.columns); columns.removeAt(2); grid.refreshColumns();