simple_form_for 时间范围
我想更改分钟范围。我有 haml:
= f.input :open_from, :as => :time, :label => "open from:"
我只想要 0、15、30、45 分钟,而不是 0..59。有什么想法吗?
i'd like to change minutes range. I have in haml:
= f.input :open_from, :as => :time, :label => "open from:"
and i want minutes only 0, 15, 30, 45, not 0..59. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SimpleForm 将输入生成委托给 Rais time_select 方法。正如您在此处看到的,您可以传递 :month_step 选项到输入调用。像这样:
SimpleForm delegates the input generation to Rais time_select method. As you can see here, you can pass a :minute_step options to input call. Like this: