Jqgrid提前搜索,所有搜索运算符都不显示在搜索运算符下拉列表中

时间:2011-08-05 05:27:41

标签: model-view-controller search jqgrid

任何人都可以知道如何填充所有搜索运算符 等于,不等于,小于,不小于,大于,不大于等等jqgrid高级搜索运算符下拉列表????

1 个答案:

答案 0 :(得分:1)

searchoptions: { sopt: ['eq', 'cn'] }

此行是列的属性,并且在网格的colModel属性中的列的定义中:

 $("#MyTable").jqGrid({
 colModel: [
 { name: "outputid", index: "outputid", width: 30, searchoptions: { sopt: ['eq', 'cn']} },
 { other columns ...}
 ],
 otherProperty: ...

您也可以设置

search: false 
相反,该列不允许搜索。