My code looks like the following, but for some reason the rjs template
(index.js.erb) is not being rendered. I've also tried naming the rjs
file index.js.rjs with no luck.
home_controller.rb:
def index
respond_to do |format|
format.js
format.html
end
end
index.js.erb:
page << "var data = 'Core
Selectors,Attributes,Traversing,Manipulation'.split(',');"
page << "$('#example').autocomplete(data);"
How does rails decide when to render an rjs file in addition to an html
file?
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---