I'm trying to use the jQuery Datepicker to set a date field in my Ruby on Rails form, but I can't work out how to do it. Can someone point me in the right direction?

link|improve this question

feedback

4 Answers

up vote 7 down vote accepted

Ryan Bates has a really great explanation of all of this:

http://railscasts.com/episodes/213-calendars

link|improve this answer
feedback

I've built a gem to handle this:

https://github.com/albertopq/jquery_datepicker

Hope it helps somebody else.

link|improve this answer
1  
This does not seem to work if you have the asset pipeline enabled, as you cannot install jquery the way the plugin requires unless you disable the pipeline. – Stanislav Palatnik Nov 28 '11 at 1:27
I've updated the gem. It should work fine now with the pipeline. – albertopq Feb 24 at 9:04
feedback

If using Rails 3.0+, you shouldn't need to do anything other than include jQuery and jQuery UI because jQuery is the default JavaScript framework.

If using Rails earlier than 3.0 or using Prototype (or something else), you'll need to use jQuery in noConflict mode. Make sure you include jQuery after Prototype (your other framework) has been loaded using something similar to:

<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jqueryui.js"></script>
<script type="text/javascript">
  jQuery.noConflict();
  jQuery(document).ready(function($) {
    // here the $ function is jQuery's because it's an argument
    // to the ready handler
    $('#dateField').datepicker();
  });
  // here the $ function is Prototype's
</script>
link|improve this answer
This only applies to versions of Rails prior to 3.0; jQuery is the new default. – tharrison Mar 12 at 21:26
@tharrison thanks for pointing that out. I've updated. – tvanfosson Mar 12 at 21:43
feedback

I used albertopq's jquery_datepicker that albertopq mentions and it works with regular forms, nested attributes, etc. Can someone vote him up for me since I have no reputation? It made things very easy for me. jquery_datepicker also correctly passes options to datepicker's necessary javascript calls.

Here's an example from one of my nested forms:

<%= f.datepicker 'availability', :minDate => 0, :maxDate => "+8Y", :tab_index => autotab %>

minDate and maxDate are passed to datepicker and tab_index is put into the text field html. (autotab is just my form helper to advance the tab + 1...better for me than hardcoding it).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.