$("#id"),combobox({
url:'',
......
filter:function(q,row){
var op = $(this).combobox("options");
return row[op.textField].toLowerCase.indexOf(q.toLowerCase()) >= 0;// >0 除开头的 =0 开头的
}
});
$("#id"),combobox({
url:'',
......
filter:function(q,row){
var op = $(this).combobox("options");
return row[op.textField].toLowerCase.indexOf(q.toLowerCase()) >= 0;// >0 除开头的 =0 开头的
}
});