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.