我正在尝试让JqGrid在完成数据加载后立即进行客户端过滤(和排序)。我可以正确设置搜索字段,但调用TriggerToolbar()似乎没有任何效果。
$("#list").GridUnload();
var mygrid = $("#list").jqGrid({
url: '@Url.Action("GetSearchCriteriaWithNoComponents", "SearchCriteria")',
postData: { BookingSiteId: function () { return $("#BookingSiteId option:selected").val(); }, MethodId: function () { return $("#MethodId option:selected").val(); } },
datatype: 'json',
mtype: 'Post',
colNames: ['Id', 'PID', 'Ori', 'Dest', 'Conn', 'Pos', 'Method', 'Billing', 'Filter', 'Pattern', 'Class', 'Wildcard', 'Components', 'Comment'],
colModel: [
{ name: 'Id', index: 'Id', width: 30, hidden: true },
{ name: 'PID', index: 'PID', width: 35 },
{ name: 'Ori', index: 'Ori', width: 35 },
{ name: 'Dest', index: 'Dest', width: 35 },
{ name: 'Conn', index: 'Conn', width: 35 },
{ name: 'Pos', index: 'Pos', width: 35 },
{ name: 'Method', index: 'Method', width: 50 },
{ name: 'Billing', index: 'Billing', width: 45, search: true, stype: 'text', searchoptions: { sopt: ['cn']} },
{ name: 'Filter', index: 'Filter', width: 90, search: true, stype: 'text', searchoptions: { sopt: ['cn']} },
{ name: 'Pattern', index: 'Pattern', width: 100, search: true, stype: 'text', searchoptions: { sopt: ['cn']} },
{ name: 'Class', index: 'Class', width: 40 },
{ name: 'Wildcard', index: 'Wildcard', width: 50 },
{ name: 'Components', index: 'Components', width: 80, search: true, stype: 'text', searchoptions: { sopt: ['cn']} },
{ name: 'Comment', index: 'Comment', width: 75, search: true, stype: 'text', searchoptions: { sopt: ['cn']} }
],
pager: '#pager',
rowNum: 25,
rowTotal: 1000,
rowList: [25, 50, 100],
sortname: 'Origin',
sortorder: "asc",
viewrecords: true,
loadonce: true,
multiselect: true,
ignoreCase: true,
gridview: true,
height: "100%",
caption: 'Subscribed Search Criteria without Components'
}).jqGrid('navGrid', '#pager', { add: false, edit: false, del: false, search: false, refresh: false }
).jqGrid('navButtonAdd', '#pager', { caption: "", buttonicon: "ui-icon-search", onClickButton: function () { mygrid[0].toggleToolbar() }, position: "first", title: "Toggle Search Toolbar", cursor: "pointer" })
.jqGrid('navButtonAdd', '#pager', { caption: "", buttonicon: "ui-icon-refresh", onClickButton: function () { mygrid[0].clearToolbar() }, title: "Clear Search Toolbar", cursor: "pointer" }
);
$("#list").jqGrid('filterToolbar', { stringResult: true, searchOnEnter: false });
if(firstrun = true)
{
$("#gs_PID").val('AA');
mygrid[0].triggerToolbar();
firstrun = false;
}
else
{
mygrid[0].toggleToolbar(); //hide the toolbar by default
}
一般的想法是固定值将使用viewmodel中的某些内容填充。
我们还希望在执行gridUnload()和后续重新加载时选择保存和恢复过滤器和排序选择,但一次只能有一个障碍。 使用@prefixes(例如@ Url.Action)的东西是Razor标记,在页面发送到浏览器之前处理。
答案 0 :(得分:6)
您将datatype: 'json'
与loadonce: true
结合使用。因此,您应该在mygrid[0].triggerToolbar()
事件句柄内调用loadComplete
。只有在加载数据后,您才应过滤数据。在triggerToolbar
期间将setTimeout
更改为datatype
之后,您可能会在'local'
方法中放置loadonce: true
代码以启动过滤。因此,loadComplete
事件句柄的代码可以是以下内容:
loadComplete: function () {
var gridDOM = this; // save $("#list")[0] in a variable
if ($(this).jqGrid('getGridParam', 'datatype') === 'json') {
// the first load from the server
setTimeout(function () {
$("#gs_PID").val('AA');
gridDOM.triggerToolbar();
}, 100);
}
}
此外,我还不完全了解您如何使用您发布的代码片段以及为何需要使用gridUnload
方法。
更新: Free jqGrid jqGrid的分支支持forceClientSorting: true
选项,强制排序和从服务器返回的数据的可选过滤, 之前显示第一页数据。它使不需要上面的代码。而不是那个可以设置postData.filters
使用
forceClientSorting: true,
search: true,
postData: {
filters: {
groupOp: "AND",
rules: [
{ op: "le", field: "PID", data: "AA" }
]
}
}
请参阅the demo。