我在 jqGrid 之外有高级搜索按钮。我在用:
var pSearch = //How do I get this object as mine is constructed in c# code. How do I get it from jqGrid's property collection or options??
$("#list").jqGrid("searchGrid",pSearch);
我在 jqGrid 之外有高级搜索按钮。我在用:
var pSearch = //How do I get this object as mine is constructed in c# code. How do I get it from jqGrid's property collection or options??
$("#list").jqGrid("searchGrid",pSearch);
的典型用法searchGrid
是
$("#list").jqGrid("searchGrid");
或者
$("#list").jqGrid("searchGrid", {multipleSearch: true});
因为“高级搜索”对话框中所有真正重要的选项都在colModel
.
我个人更喜欢第一种形式,并通过$.jgrid.search
在我包含在项目的每个页面上的一些 JavaScript 文件中进行搜索来设置常用设置。例如
$.extend($.jgrid.search, {
multipleSearch: true,
multipleGroup: true,
recreateFilter: true,
overlay: 0
});