How to refresh a grid and chart

杀马特。学长 韩版系。学妹 提交于 2019-12-12 18:31:49

问题


Refresh the grid and chart when clicking the refresh button in kendo ui


回答1:


One of these should be what you are looking for:

$('#GridName').data().kendoGrid.dataSource.read();
$('#GridName').data().kendoGrid.refresh();

$('#ChartName').data().kendoChart.dataSource.read();
$('#ChartName').data().kendoChart.refresh();


来源:https://stackoverflow.com/questions/14029364/how-to-refresh-a-grid-and-chart

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!