0
這是我有的代碼的一個例子。我遺漏了colNames和colModel,因爲我知道這不是問題。我只是想知道是否有任何方法可以使jqgrid具有更快的子網格加載。當這個網格有> 100條記錄時,它相當緩慢。如果我刪除子網格代碼並在網格上放置gridview:true,則加載sooooooooooooooo的速度會快得多,但顯然,我不能有gridview:true和子網格。有什麼建議麼?我怎樣才能使一個子網格加載jqgrid更快?
$(scheduleGridName).jqGrid({
url: dataURL,
datatype: "json",
mtype: 'GET',
colNames: [...],
colModel: [...],
height: "auto",
width: '100%',
rowNum: 2000,
loadonce: true,
jsonReader: {
root: "SearchResults",
records: "NumberOfResults",
repeatitems: false
},
viewrecords: true,
subGrid: true,
subGridRowExpanded: getSubgrid
});