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?
|
feedback
|
|
Ryan Bates has a really great explanation of all of this: | |||
|
feedback
|
|
I've built a gem to handle this: https://github.com/albertopq/jquery_datepicker Hope it helps somebody else. | |||||||
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:
| |||||
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:
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). | |||
|
feedback
|