如何在jqGrid中添加特定列的工具栏搜索?

时间:2013-03-06 06:38:38

标签: jquery jqgrid

我在jqGrid中有三列,我想在前两个上添加工具栏搜索而不是第三个。这是我的工具栏搜索代码:

jQuery("#toolbar").jqGrid('filterToolbar',{stringResult: true,searchOnEnter : false});

哦,我得到了解决方案: 只需将其应用于第三列搜索:false

1 个答案:

答案 0 :(得分:0)

我得到了解决方案:只需将其应用于第三列搜索:false

colModel:[          
                    {name:'exGroupName',index:'exGroupName', width:150},
                    {name:'exerName',index:'exerName', width:100},
                    {name:'view',index: 'view', search:false, label: 'view',width:100},
                ],