あるものを実装したい。ユーザーにメールを送信しますか? はいまたはいいえのラジオボタンがあります。そして、ラジオボタンが「はい」の場合のみ。その下のテキストにより、送信する電子メールの内容を入力できるようにする必要があります。これは私がメールコンテンツ用に持っているものですが、ボタンに依存させる方法がわかりません。
<div align="center">
Open orders?
Yes
<%= f.radio_button :orders_open, true, :class=>"radio-control"%>
No
<%= f.radio_button :orders_open, false, :class=>"radio-control"%>
</div>
<br>
<div align="center">
Email users?
Yes
<%= f.radio_button :email_users, true, :class=>"radio-control"%>
No
<%= f.radio_button :email_users, false, :class=>"radio-control", :checked => true %>
</div>
<br> <br>
<div class="control-group">
<label class="control-label">
<%= f.label :email_content, "Note to users" %>
</label>
<% if @application_state.orders_open %>
<div class="controls">
<%= f.text_area :email_content %>
</div>
<% else %>
<div class="controls">
<%= f.text_area :email_content %>
</div>
<% end %>
</div>