I was trying to refresh my kendo grid after doing an update of the data by using the following piece of code in the success handler of my ajax call:
$("#grid").data("kendoGrid").dataSource.read();
$("#grid").data("kendoGrid").refresh();
Well this refreshes and works perfectly as expected in Mozilla and Chrome but in IE the refresh does not seem to work nor does the datasource update. Do I need to make any particular modifications in my code to get it working in Internet Explorer as well?
PS: I even happened to try out $("#grid").data("kendoGrid").dataSource.sync(); which too was not working.