I am using the jquery.autocomplete.js in my rails applications. Everything is working fine. On trying to do edit action ,value is fetched from the database and the text box is populated.On trying to edit this text box the auto complete is not working.

My .js file:

$(function() { 

alert("inside"); 
var string1=" ";
string1=names.toString();
var arrayOfStrings=new Array();
arrayOfStrings = string1.split(",");
$("#release_tester_tokens").autocomplete(arrayOfStrings,{                
                multipleSeparator: ", ",                 
        multiple: true,     

    });
});  

My view file:

 %td=form.text_area :tester_tokens ,:value=>@tester_tokens,:cols=>100,:rows=>4

My controller:

def edit
    @release = Release.find(params[:id])
     tester_ids=(@release.tester_ids)?(@release.tester_ids):[]
     @tester_tokens=""
     tester_ids.each do |tester_id|
     tester_name=User.find(tester_id)
     @tester_tokens=@tester_tokens+tester_name.name+","
     end

  @ic_ids = []
   respond_to do |format|
      format.html # new.html.erb
      format.xml  { render :xml => @release }
         end

  end

Thanks, Ramya.

link|improve this question

What do you mean by "not working"? If you inspect element and look at the network activity what is the response from the server? – stef Jan 8 at 19:32
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.