我使用以下步骤安装了calendar_date_select
添加到gemfile
# To use calendar_date_select
gem 'calendar_date_select', :git => 'git://github.com/paneq/calendar_date_select.git'
捆绑安装
bundle install
我的application.html.erb看起来像
<head>
<title><%= full_title(yield(:title)) %></title>
<%= stylesheet_link_tag "application", media: "all" %>
<%= javascript_include_tag "prototype" %>
<%= javascript_include_tag :defaults %>
<%= calendar_date_select_includes "silver" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
<%= render 'layouts/shim' %>
</head>
然后我用这一行从日历中获取数据。
<%= calendar_date_select_tag "startdate", nil, :embedded => true, :year_range => 10.years.ago..0.years.ago %>
这就是页面源的样子
<input id="startdate" name="startdate" type="hidden" /><span id="cds_placeholder_89036" style="display: none; position: absolute;"></span><script type="text/javascript">
//
但我根本看不到浏览器上的插件。
答案 0 :(得分:0)
javascripts可能没有被加载到页面上。您可能需要在布局的head部分添加<%= calendar_date_select_includes %>
。
编辑1:对不起,我现在在你的来源中看到了它。
编辑2:<%= calendar_date_select_includes "silver" %>
应该在<%= javascript_include_tag "application" %>
之后