Displaying 2 results from an estimated 2 matches for "change_back_div".
2006 Jun 06
0
Get value from form using rjs, and problem with Safari
...;div id="form1_2">
<%= text_area("row1", "col2", { :cols => "20", :rows => "3" }) %>
<div class="change">
<%= link_to_remote("change",
:url => { :action => :change_back_div,
:id => "form1_2" },
:id => "change") %>
</div>
</div>
<%= submit_tag ''Send'' %>
<%= end_form_tag %>
helper:
module AdminHelper
def q_item(row, col)...
2006 Jun 06
1
Getting value of form using Ajax (and problems with Safari)
...m(1, 1)%>
</div>
<div id="form1_2">
<%= text_area("row1", "col2", { :cols => "20", :rows => "3" }) %>
<div class="change">
<%= link_to_remote("change",
:url => { :action => :change_back_div,
:id => "form1_2" },
:id => "change") %>
</div>
</div>
<%= submit_tag ''Send'' %>
<%= end_form_tag %>
helper:
Code:
module AdminHelper
def q_item(row, col)
return select("row"+row.to_s, "...