我一直在尝试调整表单字段的大小。我尝试使用这样的尺寸...
<%= f.date_select(:form_date, order: [:month, :day, :year], prompt: { month: 'Select Month', day: 'Select Day', year: 'Select Year' }, start_year: 2000, size: 1) %>
我只是以错误的顺序输入尺码(尺寸:1不应该是最后一次)?这是我在样式表中最好的处理方式吗?
提前致谢。
答案 0 :(得分:1)
原来我正在混合选项和html_options
date_select(object_name, method, options = {}, html_options = {}) Link
以下是我从上面改变了我的代码行...
<%= f.date_select(:form_date, options = { order: [:month, :day, :year], prompt: { month: 'Select Month', day: 'Select Day', year: 'Select Year' }, start_year: 2000 }, html_options = { size: 1 }) %>