How to upload the data into datatable with out recreating every time new datatable?

Hi All,
I have a datatable I need to update the data depending on some criteria. For example: I have 3 folders when I select the folder I have to update the selected folder data into the grid, I want to use only one grid.

Hello,

you can clear the data from your datatable and then parse new data into it:

dtable.clearAll();
dtable.parse(data);

or, load the data from some url:

dtable.load("some.php");

Thank you. :slight_smile: