我嘗試每10秒自動刷新我的劍道網格。它完全適用於Google Chrome和Firefox。但是,這在Internet Explorer中不起作用。同時刷新網格右下角的按鈕,當我在Internet Explorer中單擊時不起作用。但它適用於Chrome和Firefox。我應該如何爲Internet Explorer做些什麼?Kendo Ui開源網格在Internet Explorer中不刷新?
function handleDataFromServer() {
$("#grid").data("kendoGrid").dataSource.read();
}
window.setInterval("handleDataFromServer()", 10000);
$(document).ready(function() {
$("#grid").kendoGrid({
sortable: true,
pageable: {
refresh: true,
buttonCount: 5,
pageSizes: true
},
autoBind: true,
dataSource: {
pageSize: 15,
transport: {
read: "/reports/Getdata",
type: "json"
}, schema: {
data: "data",
total: "total"
},
serverPaging:true
},
.....
編輯:handleDataFromServer()
功能是在Internet Explorer中工作。但$("#grid").data("kendoGrid").dataSource.read();
不起作用...
完美的解決方案!非常感謝 –