Rails中的Date_field,如何自定义

时间:2016-03-04 08:06:29

标签: ruby-on-rails

当我使用 <ActionBar> <ActionItem ios.systemIcon="12" android.systemIcon="ic_menu_search" tap="showSearch" /> <ActionItem android.systemIcon="ic_menu_moreoverflow" tap="logout" text="Logout" android.position="popup" /> <ActionBar.titleView> <StackLayout orientation="horizontal"> <Label text="{{ name }}" /> <Image src="res://app_icon" /> </StackLayout> </ActionBar.titleView> date_field时,用户仍然可以从1月或2月选择日期(start_year是我唯一可以指定的内容)。
我显然希望用户能够选择一个不早于今天的日期。是否可以在Rails中执行此操作?

1 个答案:

答案 0 :(得分:0)

使用简单的rails select形成帮助器,如下所示。

<%= f.select :month, Date.today.month..12%>
<%= f.select :year, Date.today.year..x.years.from_now.year %>