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.
您可以使用
$('#GridName').data('kendoGrid').dataSource.read();
$('#GridName').data('kendoGrid').refresh();
I never do refresh .
$('#GridName').data('kendoGrid').dataSource.read();
alone works for me all the time.
$('#GridName').data('kendoGrid').dataSource.read();
$('#GridName').data('kendoGrid').refresh();
链接地址: http://www.djcxy.com/p/70428.html
上一篇: Kendo UI网格。 未传输参数
下一篇: 重新加载/刷新Kendo Grid