Hi,

I have set the autocomplete for multiple, as shown below. When I use
the tab to select an entry it works fine, but you try using the mouse
then it does not work correctly. Any suggestion on what may be the
issue (using IE7) -

$('#textbox').autocomplete('url',{
       minChars:1,
       max:200,
       width:300,
       scrollHeight:200,
       matchContains:false,
       autoFill:false,
       selectFirst:true,
       mustMatch:false,
       multiple:true,
       delay:250,
       formatItem:function(row, i, max) {
return row[0];
 }
,
       formatResult:function(row){
return row[0];
}

   });
   });

Thanks in Advance

Anurag


Reply via email to