我有以下网格:
var gridMyTasks = $('#gridMyTasks').jqGrid({
jsonReader: { root: 'rows', repeatitems: false, id: 'ID' },
datatype: 'json',
colNames: ['Task ID', 'Task Name', 'Project Name', 'Task Stage', 'Doc Type', 'Due Date'],
colModel: [
{ name: 'ShortCode', width: 70, jsonmap: 'ShortCode', sortable: false },
{ name: 'TaskName', width: 200, jsonmap: 'TaskName', formatter: 'fmtTaskName', sortable: false },
{ name: 'ProjName', width: 200, jsonmap: 'ProjName', formatter: 'fmtName', sortable: false },
{ name: 'TaskStage', width: 100, jsonmap: 'TaskStage', sortable: false },
{ name: 'DocType', width: 130, jsonmap: 'DocType', sortable: false },
{ name: 'DueDate', width: 70, jsonmap: 'DueDate', sortable: false }
],
rowNum: 0,
height: 'auto',
autowidth: true,
forceFit: true,
multiselect: false,
caption: '',
altclass: 'zebra',
altRows: true,
hoverrows: false,
gridview: true,
sortable: false,
grouping: true,
groupingView: { groupField: ['ProjName'], groupDataSorted: true }
});
当我的页面加载时,我调用Web服务获取前15行并将其添加到网格中:
TPM.GetHomepageData(function (results) // AJAX web service to load data
{
gridMyTasks[0].addJSONData({ rows: results.Tasks });
if (results.Tasks.length >= 15) $('#divTaskFooter').show(); // Enable "Show All" link
gridMyTasks.show();
}, null);
这很有效。但是,对于超过 15行数据的用户,我有一个“全部显示...”链接。这会再次调用Web服务,但会传入一个参数来指示我想要所有行。这连接如下:
var loadGrid = function (limit)
{
TPM.GetMyTasks(limit, curSort, curDir, function (results)
{
grid.clearGridData(true); // should clear the existing rows first?
grid[0].addJSONData({ rows: results }); // *all* rows, not sure new ones
link.html(expanded ? 'Show less...' : 'Show all...');
}, null);
};
moreLink.click(function (event) // When user clicks "Show All", load all the data
{
expanded = !expanded;
loadGrid(expanded ? null : 15);
event.preventDefault();
});
在这种情况下,results
是一个包含18行的数组,此数据是正确的。然而,发生的事情是原来的15行粘在一起,18行被添加,然后我总共有33行。换句话说,首先不清除网格。
如果我注释掉addJSONData
行:
grid.clearGridData(true);
//grid[0].addJSONData({ rows: results });
然后,网格将清除,我将看到零行。因此,就好像网格被清除一样,然后旧的数据像一堆不死的僵尸行一样复活,并且重复的行被添加。我一定是做错了。
更新:为Oleg添加HTTP流量捕获
初始加载:
POST http://oursite.com/TPM.svc/GetHomepageData HTTP/1.1
Accept: */*
Accept-Language: en-us
Referer: oursite.com
x-requested-with: XMLHttpRequest
Content-Type: application/json; charset=utf-8
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E)
Host: oursite.com
Content-Length: 0
Connection: Keep-Alive
Pragma: no-cache
Cookie: SMSESSION=Unimportant
响应:
HTTP/1.1 200 OK
Cache-Control: private
Content-Length: 893
Content-Type: application/json; charset=utf-8
Server: Microsoft-IIS/7.5
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Thu, 25 Jul 2013 16:57:43 GMT
{"d":{ ... A bunch of JSON here ...}}
全部显示点击:
POST http://oursite.com/TPM.svc/GetMyTasks HTTP/1.1
Accept: */*
Accept-Language: en-us
Referer: oursite.com
x-requested-with: XMLHttpRequest
Content-Type: application/json; charset=utf-8
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; .NET4.0C; .NET4.0E)
Host: oursite.com
Content-Length: 42
Connection: Keep-Alive
Pragma: no-cache
Cookie: SMSESSION=Unimportant
{"limit":null,"orderBy":null,"desc":false}
响应:
HTTP/1.1 200 OK
Cache-Control: private
Content-Length: 1762
Content-Type: application/json; charset=utf-8
Server: Microsoft-IIS/7.5
set-cookie: SMSESSION=...
Set-Cookie: SMSESSION=...
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Thu, 25 Jul 2013 17:01:55 GMT
{"d":{ ... A bunch of JSON here ...}}
答案 0 :(得分:1)
我希望,我能正确理解你的问题。这个问题在我看来很容易。 jqGrid默认将一些参数发送到服务器(page
,rows
,sidx
,sord
等等。因为您实现了服务器端分页,所以您已经使用了参数。您写道,您在开头加载前15行。这意味着对服务器的请求包含page=1
和rows=15
。值15
是jqGrid的rowNum
参数值。
要加载所有行,您只需将rowNum
参数的值更改为某个大值(如10000)并重新加载网格即可。相应的代码可以是以下
$("#grid").jqGrid("setGridParam", {rowNum: 10000})
.trigger("reloadGrid", [{page: 1, current: true}]);
有关reloadGrid
的参数,请参阅the answer。我使用上面的page: 1
来确保在点击“全部显示...”链接之前,不要使用寻呼机中的当前页面。