Welcome,
Guest
|
|
I'm using a jQuery datepicker to create a new a event, and when I click "<" to go to the previous month it moves foward, any idea? thanks!
|
Please Log in to join the conversation. |
|
Hmmm. We could not reproduce this bug. Can you please provide more information like
1. Browser 2. Timezone 3. Any particular month this is happening? or it happens in general? 4. Is it consistently wrong? or just shows up every now and then? |
Please Log in to join the conversation. Team Web2Cal. |
|
I am also seeing this issue, it occurs in Firefox 3.5.4 and safari 4.0.3
to reproduce open calendar, click on an open space, opens the non-popup new calendar event dialog move to the event date , click up pops the calendar picker click on month name , goes to next month OK click on right arrow , goes to next month OK click on the left arrow, goes to next month << NOT OK thanks, |
Please Log in to join the conversation. |
|
The fix for this issue is very simple
add class="datepickerGoPrev" to the TH which contains <a href="#" class="prevButton "><span><%=prev%></span></a> in dateselector.js file. For your convenience, I have pasted the entire line 16 from dateselector.js head: ['<td>', '<table cellspacing="0" width="100%" cellpadding="0">', '<thead>', '<tr class="weekrow">', '<th width="15" class="datepickerGoPrev"><a href="#" class="prevButton "><span><%=prev%></span></a></th>', '<th colspan="5" class="datepickerMonth"><a href="#"><span></span></a></th>', '<th width="15" align="right"><a href="#" class="nextButton"><span><%=next%></span></a></th>', '</tr>', '<tr class="datepickerDoW">', '<th class="datepickerweekheader"><span><%=week%></span></th>', '<th><span><%=day1%></span></th>', '<th><span><%=day2%></span></th>', '<th><span><%=day3%></span></th>', '<th><span><%=day4%></span></th>', '<th><span><%=day5%></span></th>', '<th><span><%=day6%></span></th>', '<th><span><%=day7%></span></th>', '</tr>', '</thead>', '</table></td>'], Good luck! |
Please Log in to join the conversation. |