Displaying 1 result from an estimated 1 matches for "update_races".
2007 Sep 10
2
form_remote_tag not providing params in Ajax
...I am trying to use a value someone supplies in a
form in another form that is dynamically generated using Ajax.
I have the following code:
<div id="race_table">
</div>
<%= form_remote_tag(:update => "race_table", :url => { :action =>
"update_races" }) %>
<table>
<tr>
<td>Ruleset:</td>
<td><%= select(:post, :ruleset, @rulesets) %></td>
</tr>
<tr>
<td colspan="2"><%= submit_tag "Find Races" %></td>
</tr>
</table>
<%= end_for...