Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jqGrid に 3 つの列があり、3 番目の列ではなく最初の 2 列にツールバー検索を追加したいと考えています。ツールバー検索のコードは次のとおりです。
jQuery("#toolbar").jqGrid('filterToolbar',{stringResult: true,searchOnEnter : false});
ああ、私は解決策を得ました:これを3列目の検索に適用するだけです:false
私は解決策を得ました:これを3列目の検索に適用するだけです:false
colModel:[ {name:'exGroupName',index:'exGroupName', width:150}, {name:'exerName',index:'exerName', width:100}, {name:'view',index: 'view', search:false, label: 'view',width:100}, ],