我们正在使用jqGrid搜索 - 对于给定字段,如何指定具有特定搜索值而不是文本框的组合框?
答案 0 :(得分:2)
需要使用stype
和searchoptions
:
{name:'expiry', index:'expiry', width:60, align:'right',stype:'select', searchoptions:{dataUrl:'expiry_select.htm'}}
更多信息here
答案 1 :(得分:1)
尝试这样的事情:
colModel:[
...
{name:'MyField',index:'MyField', width:80, align:"right", stype:'select', editoptions:{value:":All;0.00:0.00;12:12.00;20:20.00;40:40.00;60:60.00;120:120.00"}},