1.0.0 version of Calendar Plugin has been released.
Calendar Plugin provides a lightweight date picker tag, based in jscalendar.
If you need a rich date picker, but don’t want to install a lot of JavaScript dependencies, use Calendar plugin.
Use of plugin is simples, to install in your application just type:
grails install-plugin calendar
To use date picker you need to import the plugin resources:
<calendar:resources lang="en" theme="tiger"/>
Resources Tag imports all javascript and css files necessary, you can add it in each page or in main layout, you should put it in HEAD section.
Then, you are ready to use date picker,there is Date Picker tag, to put a rich calendar component in your view.
<calendar:datePicker name="date"/>
Date picker supports format(Date, Time),theme and language customization, for information about tag attributes, themes and Patterns to format, take a look at plugin page on grails wiki.
3 Comments so far
Leave a comment

Hey there,
Great plugin! I added an announcement here:
http://www.opensourcereleasefeed.com/release/show/grails-calendar-plugin-1-0-0-released
Join the community at OpenSource Release Feed and feel free to add all you future release announcements there. It’s a great way to promote your project.
All the best,
Comment by Schalk Neethling February 16, 2009 @ 19:02Schalk
The grails plugin have issue in the css with browser IE6, IE7 and FF2, and for resolve this problem is for each css file just put a line of code width: 220px, for example to change the subject line div.calendar Tigre (position: relative;) to div.calendar (position: relative; width: 220px;) and ready.
Comment by José Carlos March 6, 2009 @ 20:46Hi Jose,
Comment by mchiareli March 6, 2009 @ 22:16Thanks for your feedback, it’s fixed in 1.2.0 version.