0

我有一个带有字段位置的表格。根据选择的位置值,显示一个部分。

<% form_for @expression, :url => { :controller => "expressions", :action => "update" } do |f| %>

Location: <%= f.select(:lcn_location, [['loc_A', 'loc_A'],
    ['loc_B', 'loc_B'],
    ['loc_B', 'loc_B']
  ]) %>

<!--observe location field-->
<%= observe_field(form_tag_id(f.object_name,:lcn_location),
  :url => {:controller => 'expressions',
    :action => :display_field},
  :with => "'location_value='+value+'&form_object=#{f}'"   //here i am passing the form object
) %>

<% end %>

**display_field.rjs

if (params[:location_value] == 'loc_A')
   page.replace(div_id,  :partial => "adjacent_to_location", :locals => {:f => params[:form_object]} );
else
 page.replace_html div_id, 'Hello World!'
end

**_adjacent_to_location.html.erb

<%= f.text_field  :lcn_adjacent_to , { :size => 55} %>

我的问题是如何使用 rjs 将表单对象传递给部分?以上不起作用。

非常感谢你的帮助。

4

1 回答 1

1

改变

<%= f.text_field  :lcn_adjacent_to , { :size => 55} %>

<%= text_field_tag :expression, :lcn_adjacent_to , { :size => 55} %>
于 2012-09-25T11:12:42.977 回答