Webix removes columns from DataTable?

Does Webix still remove columns from datatable? I found the webix datatable api documentation, but I can't find anything about deleting a column.

+7
javascript webix
source share
1 answer

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(); 
+1
source share

All Articles