Displaying 1 result from an estimated 1 matches for "dynamic_st".
Did you mean:
dynamicist
2010 Jan 22
0
dynamic select menu doesn't work for 'form_tag'
...have tried with the dynamic menu using
"http://railscasts.com/episodes/88-dynamic-select-menus " site.
i implemented and it was working fine for ''form_for'' tag.
But i need to do the same function with ''form_tag'' as like as,
<% javascript ''dynamic_states'' %>
<%form_tag do%>
<p>
<label for="person_country_id">Country:</label>
<%= collection_select :id, Country.find(:all), :id, :name, :prompt =>
"Select a Country" %>
</p>
<%end%>
child records doesn''t chang...