我想在时间模式下使用jQuery Mobile日期框,但无法弄清楚如何将rails输入字段助手与jQuery Mobile数据集合进行集成。
字段是时间字段。我的表单助手是类型日期,因为TimeBox似乎需要字段的类型日期。
我拥有的是
<%= f.date_field :start_time %>
我需要的是产生如下但无法弄清楚如何:
<input name="start_time" id="start_time" type="date" data-role="datebox" data-options='{"mode": "timebox"}'>
迁移:
t.time :start_time, :null => false