次のグリッドがあります。
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 ...}}