$("#id"),combobox({

   url:'',

   ......

     filter:function(q,row){

    var op = $(this).combobox("options");

    return row[op.textField].toLowerCase.indexOf(q.toLowerCase()) >= 0;//  >0  除开头的   =0  开头的

   } 

});

05-19 07:56