Skip to content Skip to sidebar Skip to footer

How To Refresh A Grid And Chart

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

Solution 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();

Post a Comment for "How To Refresh A Grid And Chart"