Refresh the data source in JavaScript Treegrid control
18 Nov 20181 minute to read
How to refresh the datasource
You can add/delete the datasource records through an external button. To reflect the datasource changes in Tree Grid, you need to assign the modified data to dataSource property.
Please follow the below steps to refresh the Tree Grid after datasource change.
Step 1:
Add/delete the data source record by using the following code.
treegrid.dataSource.unshift(data); // add a new record.
treegrid.dataSource.splice(selectedRow, 1); // delete a record.Step 2:
Refresh the Tree Grid after the data source change by using the refresh method.
treegrid.refresh(); // refresh the Grid.You can refer to our
JavaScript Tree Gridfeature tour page for its groundbreaking feature representations. You can also explore our JavaScript Tree Grid exampleJavaScript Tree Grid exampleto knows how to present and manipulate data.