| Issue 64: | 'd' and 'D' in date formatting | |
| 2 people starred this issue and may be notified of changes. | Back to list |
Hi,
(sorry for my english), as i see in source You forget about day parse in
$.fullCalendar.formatDate(date, format) i add "d" in dateFormatters
diff below :) :
1196a1197
> 'd': function(d) { return d.getDate() },
Thanx for gr8 plugin ;)
Bye.
Jul 31, 2009
thank you paramah, this will be in the next release.
Summary:
'd' and 'D' in date formatting
Status: Accepted Labels: -Type-Defect Type-Enhancement
Sep 21, 2009
1.3 has a brand new, more powerful formatDate format (http://arshaw.com/fullcalendar/docs/date-utils.php). respond to this thread if any troubles. thanks.
Status:
Fixed
Aug 13, 2013
(No comment was entered for this change.)
Status:
Implemented
Aug 13, 2013
(No comment was entered for this change.)
Status:
Released
|
|
| ► Sign in to add a comment |
And for 2-digits day format: 'D': function(d) { return zeroPad(d.getDate())},