Add new items via JQuery TokenInput / Ruby on Rails
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#model (idea 100% stolen from ryanb) | |
def author_tokens=(ids) | |
ids.gsub!(/CREATE_(.+?)_END/) do | |
Author.create!(:name => $1).id | |
end | |
self.author_ids = ids.split(",") | |
end | |
# jquery.tokeninput.js | |
# remove .toLowerCase() (twice), otherwise you won't be able to add new items with capitals... | |
# also change this line: | |
# var this_token = $("<li><p>"+ value +"</p> </li>") | |
# to this: | |
# var this_token = $("<li><p>"+ value.replace('Add: ', '') +"</p> </li>") | |
# controller | |
def index | |
@authors = Author.where("name like ?", "%#{params[:q]}%") | |
results = @authors.map(&:attributes) | |
results << {:name => "Add: #{params[:q]}", :id => "CREATE_#{params[:q]}_END"} | |
respond_to do |format| | |
format.html | |
format.json { render :json => results } | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment