そのため、通常はdate_select
モデルのフォームでRailsアプリケーションのヘルパーを使用しますが、作成した最新のアプリケーションでは、ドロップダウンごとに個別のcss IDを指定する必要がありました(月、日、年)。で可能date_select
です。代わりに、、、、およびヘルパーを使用してselect_month
いselect_day
ますselect_year
。datetime
ここに問題があります:データベース内の1つのレコードをすべてに記述させるにはどうすればよいですか?
(ちなみに、この質問を見てきましたが、私にはかなり役に立たないように見えます。さらに、これを処理するハッキーなjQueryのようなことはしたくありません。)
これが私がこれまでに持っているものです:
#default_time_for is just a helper method that returns the default time for the specified "period" of time (month,day,etc.)
<%= select_month(default_time_for(:month)) %>
<%= select_day(default_time_for(:day)) %>
<%= select_year(default_time_for(:year), {:start_year => Time.now.year-18, :end_year => 1930}) %>