我做了一个JQgrid
要求Ajax
在加载页面时获取数据的方法。但在 IE9 中,问题在于它没有在加载表单时加载数据,而是在我重新加载页面时完成相同的过程,并且我能够在网格中看到数据。IE9 或 Grid 有什么问题吗?它在所有其他浏览器中都显示。
它显示没有数据的空白网格。
我的网格定义如下。
jQuery(document).ready(function(){
jQuery("#internetusagerecords").jqGrid({
height:250,
datatype: 'local',
colNames:['IP Address','Start Time',
<% if (isHttpMacFlowOn){%>
'MAC Address',
<% } %>
'Stop Time','Used Time','Effective Session Time','Downloaded Data','Uploaded Data','Total Transfer'],
colModel :[
{name:'ip', index:'ip', sorttype:'text'},
{name:'starttime', index:'starttime', sorttype:'int',align:"right"},
<% if (isHttpMacFlowOn){ %>
{name:'macaddress', index:'macaddress', sorttype:'text', align:"left"},
<% } %>
{name:'stoptime', index:'stoptime', sorttype:'int',align:"right"},
{name:'usedtime', index:'usedtime', sorttype:'text', align:"right"},
{name:'effectivesession', index:'effectivesession',sorttype:'date', align:"right"},
{name:'download', index:'download', sorttype:'int',align:"right"},
{name:'upload', index:'upload',sorttype:'int',align:"right"},
{name:'totaltransfer', index:'totaltransfer',sorttype:'int',align:"right"}],
pager:jQuery('#internetusagepager'),
rowNum:10,
sortname: 'ip',
autowidth:true,
sortorder: "asc",
rowList:[10,20,50,100,200],
viewrecords: true,
loadonce:false,
grouping:true,
footerrow: true,
userDataOnFooter: true,
gridComplete: function call1(){},
/*
loadComplete: function(data) {
var costsum = jQuery("#records").jqGrid('getCol', 'estimatedcost', true, 'sum');
var calldurationsum = jQuery("#records").jqGrid('getCol', 'seconds', true, 'sum');
var unitssum = jQuery("#records").jqGrid('getCol', 'units', true, 'sum');
jQuery("#records").jqGrid('footerData','set', {starttime: 'Total:', estimatedcost: costsum,seconds: calldurationsum,units: unitssum});
},
*/
caption:'Internet Usage Details'
});
});