开发者

Using calendar_date_select with Rails 3

I've been trying to create a user date-of-birth selection field during sign up. The code looks like this:

<div id="content">
<h3>Register</h3>  
  <%= form_for(@user) do |f| %>
    <div style="width: 374px; margin: 0 auto;">
      <%= f.label :name %>
      <%= f.text_field :name %>
      <div style="clear: both;"></div>
      <%= f.label :email %>
      <%= f.text_field :email %>
      <div style="clear: both;"></div>
      <%= f.la开发者_Python百科bel :dob %>
      <%= f.calendar_date_select "e_date" %>
    </div>
  <% end %>
</div>

When I try to load it, rails gives me this error:

undefined method `calendar_date_select' for #<#<Class:0x00000101210208>:0x0000010120d0a8>

What am I doing wrong?

EDIT I installed the calendar_date_select gem using: gem install calendar_date_select I'm running OS X Snow Leopard if it matters.


  1. Add to Gemfile:
    gem 'calendar_date_select', :git => 'git://github.com/paneq/calendar_date_select.git'

    Don't use the rails3test branch it is old and was previously merged into master

  2. run bundle install

  3. run rake calendar:install
  4. Add <%= calendar_date_select_includes %> AFTER <%= javascript_include_tag :defaults%> in your layout
  5. Add <%= f.calendar_date_select "calendar" %> to your view
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜