How to reload or refresh a Kendo Grid using Javascript?
It is often required to reload or refresh a grid after sometime or after a user action.
How to reload or refresh a Kendo Grid using Javascript?
It is often required to reload or refresh a grid after sometime or after a user action.
You can use
In a recent project, I had to update the Kendo UI Grid based on some calls, that were happening on some dropdown selects. Here is what I ended up using:
Hopefully this will save you some time.
An alternative way to reload the grid is
The default/updated configuration/data of the widgets is set to automatically bind to an associated DataSource.
The easiest way out to refresh is using the refresh() function. Which goes like:
while you can also refresh the data source using this command:
The latter actually reloads the data source of the grid. The use of both can be done according to your need and requirement.