Displaying 1 result from an estimated 1 matches for "new_contract".
2006 May 09
6
RJS, & mulitple Drop Down Boxes.
.../aietc/?page_id=410
Instead of doing it the way he/she has, I decided to use RJS files, or
at least I tried.
Here''s my view
<%= start_form_tag %>
<%= javascript_include_tag "prototype" %>
<p>
Union:
<div id="union">
<select name="new_contract[union_id]" id="new_contract[union_id]">
<option value="">Select Union</option>
<% @unions.each do |union| %>
<option value="<%= union.id %>">
<%= union.name %>
</option>
<% e...