Datatable data parsing

Hi, I am having problem displaying new data after re-parsing the data.
The setup I have is to not specify the columns, and use autoConfig instead.
I’ve tried table.data.clearAll() and table.clearAll() but both only removes the data value, but not the columns. This is causing problem as the new data parsed has different columns to the previously parsed dataset.

Any suggestions?

Currently you need to destroy and recreate the datatable.
Starting from Webix 2.3 it will be possible to reuse autoConfig

      //clear data
      $$("dtable").clearAll();
      //drop existing configuration
      $$("dtable").refreshColumns([]);

correct