特定の条件が満たされた場合にのみフォーム フィールドを表示することは可能ですか?
私は次のようなものを作りたい:
<%= f.input :pregnancies, :as => :radio, :label => "Pregnancies", :collection => [["no", false], ["yes", true]]%>
if :pregnancies = true
then show this input
<%= f.input :preg_nr, :label => "Number of pregnancies" %>
前もって感謝します