calendarxp Site Admin
Joined: 30 Jan 2005 Posts: 409
|
Posted: Sun Apr 01, 2007 10:11 pm Post subject: How to merge daily events with holiday events? |
|
|
By default, the fHoliday() function in agenda.js favors user event over the recurring holiday events. If you want them both, please place the following code to the fHoliday() right before the return:
Code: | function fHoliday(y,m,d) {
...
if (rE&&r) {
rE[0]+="\n"+r[0]; // append tooltip
rE[6]+=r[6]; // append html
}
return rE?rE:r;
} |
_________________ Copyright 2003-2011 Idemfactor Solutions, Inc. All rights reserved. |
|