对于更新模型的表单,我的datepicker正在运行并包含如下:
= f.input :starts_at, :as => :datepicker
现在我想在搜索表单中使用Datepicker,它将几个搜索参数传递给控制器(不使用模型)。我不确定如何使用text_field_tag定义输入。
= form_tag some_action_path, method: "get", class: "someclass" do |f|
= text_field_tag ???...
感谢任何帮助。谢谢!
修改:
找到解决方案,我只需将paramname作为id传递给datepicker js
= text_field_tag :starts_at
:javascript
$(function() {
$( "#starts_at" ).datepicker();
})
答案 0 :(得分:4)
找到解决方案,我只需将paramname作为id传递给datepicker js
= text_field_tag :starts_at
:javascript
$(function() {
$( "#starts_at" ).datepicker();
})