Reloading/refreshing Kendo Grid
问题 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. 回答1: You can use $('#GridName').data('kendoGrid').dataSource.read(); <!-- first reload data source --> $('#GridName').data('kendoGrid').refresh(); <!-- refresh current UI --> 回答2: I never do refresh . $('#GridName').data('kendoGrid').dataSource.read(); alone works for me all the time. 回答3: $('#GridName').data('kendoGrid').dataSource.read(); $('