0
這是情景我有一個JQGrid請求一個服務的完整數據列表,我已經使用了複雜的搜索,它的工作非常好,這個屬性loadonce:true;Jqgrid複雜搜索
gridview: true,
rownumbers: true,
rownumWidth: 20,
scroll: 0,
rowNum: 10,
rowList: [10, 50, 100, 1000],
sortname: 'ID',
pager: '#pager',
sortorder: "asc",
viewrecords: true,
autowidth: true,
width: '100%',
height: '100%',
scrollOffset: 0,
loadonce: false,
ignoreCase: true,
如果我禁用loadonce爲false那麼複雜的搜索將無法正常工作,我真的想如何搜索已已加載的現有記錄的東西,可以說我有1000列裝;我需要在內部過濾它們而不向服務器發送數據,有什麼想法?
搜索
{
multipleSearch: true,
multipleGroup: false,
showQuery: false,
odata: ['contains', 'equal', 'not equal', 'less', 'less or equal', 'greater', 'greater or equal', 'begins with', 'does not begin with', 'is in', 'is not in', 'ends with', 'does not end with', 'does not contain'],
groupOps: [{ op: "AND", text: "all" }, { op: "OR", text: "any"}],
matchText: " Find",
rulesText: " matches",
sopt: ['cn', 'bw', 'eq', 'ne', 'lt', 'le', 'gt', 'ge', 'ew']
});
感謝