onFindValue:function(li){findValue(li,1,2,3,4)}, On 5/31/07, tuliopaiva <[EMAIL PROTECTED]> wrote:
I would like to add a parameter with the id of the hidden input that will have the hidden value of the item. something like this: ===== function findValue(li, hidden_id) { //add the "hidden_id" parameter if( li == null ) return alert("No match!"); // if coming from an AJAX call, let's use the id as the value if( !!li.extra ) var sValue = li.extra[0]; // otherwise, let's just display the value in the text box else var sValue = li.selectValue; alert("The value you selected was: " + sValue); $("#"+hidden_id).value = sValue; //add this line } ===== I dont't know if this is the best thing to do it...:P []'s On 31 maio, 17:29, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wrote: > >createAutoComplete = function() { > > return $("#input_box").autocomplete("/buscarServidor/", { > > delay:10, > > minChars:2, > > matchSubset:1, > > matchContains:1, > > cacheLength:10, > > onItemSelect:selectItem, > > onFindValue:findValue, //how can I add parameters > here??? > > formatItem:formatItem, > > autoFill:true > > }); > > }; > > >function findValue(li) { > > if( li == null ) return alert("No match!"); > > // if coming from an AJAX call, let's use the id as the value > > if( !!li.extra ) var sValue = li.extra[0]; > > // otherwise, let's just display the value in the text box > > else var sValue = li.selectValue; > > alert("The value you selected was: " + sValue); > >} > > >==================== > > >So, how can I add parameters in the "findValue" function? > > What are you actually trying to do? What kind of "parameters" are you > looking to add? > > -Dan
-- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ