RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: Terfender
I have the following setup
jQuery -> $('#release_anime_title').autocomplete source: ['foo', 'food', 'four']
<%= f.text_field :anime_title %>
//= require jquery //= require jquery-ui //= require jquery_ujs //= require_tree .
Rails 3.2.12
when I type 'f', nothing gets populated. Any ideas? I have javascript enabled on my browser.
thanks a lot! (works with FireFox and Chrome)
It is not working for me. I used both FireFox and Chrome, and I click on "Launch App", but nothing happens
Rayan,
Regarding to create a new comment on each model,
link_to "New Comment", [:new, @commentable, :comment]
I have "news" model and "task" model which is nested under "project" model routing
resources :news resources :projects do resources :tasks do resources :comments end end
Is there a way to accomplish it so I don't have two links?
I have the following setup
Rails 3.2.12
when I type 'f', nothing gets populated. Any ideas?
I have javascript enabled on my browser.
thanks a lot! (works with FireFox and Chrome)
It is not working for me. I used both FireFox and Chrome, and I click on "Launch App", but nothing happens
Rayan,
Regarding to create a new comment on each model,
I have "news" model and "task" model which is nested under "project" model routing
Is there a way to accomplish it so I don't have two links?