0
votes

Is it possible to change a kendo datasource and change the whole grid content in the same partial view?? Please any idea about it?

1

1 Answers

2
votes

Try this:

$("#yourButtonId").click(function() {
  $("#yourChartId").data("kendoChart").dataSource.read(yourNewDataSourceReader);
});

Hope this helps, have a nice day,

Alberto