<%= render_partial "_jsdatacombo" %>
the error is:
undefined method `has_key?' for "_jsdatacombo":String
It seemed if I user render_partial function, the system always report
the error.
Any has ideas?
--
Posted via http://www.ruby-forum.com/.
render_partial is obsolete. Use <%= render :partial => 'jsdatacombo' %>
(Rails will insert the underscore on the front of the name, automagically.)
HTH,
Jeffrey
Ok, it work, thanks