I created a project using Kendo UI Grid, it works very well in Chrome and mozilla. Grids can refresh automatically. but in explorer, it can't! only first time (when page is open first time) datasource work (script), then datasource not work in refresh time.
This two scenario, grid can not refresh:
- When I return from "EDİTPAGE", I can see updated values in grid. But in chrome and mozilla, I can see.
I have automatic refresh command named
setInterval, Grid can not refresh again in Explorer. it can only refresh in Chrome and Mozilla.setInterval(function () { $("#grid").data("kendoGrid").dataSource.read(); }, 10000); /// not work! $(document).ready(function () { $("#grid").kendoGrid({ sortable: true, pageable: { input: true, numeric: false, buttonCount: 5, pageSizes: true }, autoBind: true, height: 500, selectable: "row", dataSource: { pageSize: 5, transport: { read: "/Home/Getdata", //// here works one time in explorer. Then it's not work. I change page and come back again but not work. type: "json" }, schema: { data: "data", total: "total" }, serverPaging:true }, change: function (e) { var item = this.dataItem(this.select()); win.content(template(item)); win.open(); }, rowTemplate: kendo.template($("#rowTemplate").html()),altRowTemplate: kendo.template($("#altTemplate").html()) }).data("kendoGrid");