Rails アプリでSimple Form gemを使用しています。私のサインアップフォームには、生年月日のフィールドがあります。ただし、フィールドは次の順序で表示されます: 年/月/日。
フィールドの順序を月 - 日 - 年にする最良の方法は何ですか?
私のフォームは次のようになります。
<%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
<%= f.input :created_at %>
<%= f.button :submit, "Sign up" %>
<% end %>