calendar.js revision 9c46bf9bc0ac9bab8d409ae4ab6d2a2ddc4dc55b
YUI({
base: '../../../../build/',
lang: "en",
filter: "raw"
}).use('calendar', function(Y) {
Y.CalendarBase.CONTENT_TEMPLATE = Y.CalendarBase.TWO_PANE_TEMPLATE;
var calendar = new Y.Calendar({
contentBox: "#mycalendar",
width:'600px',
showPrevMonth: false,
showNextMonth: false,
selectionMode: 'multiple',
date: new Date(2011, 6)}).render();
var rules = {
"all": {
"all": {
"all": {
"2, 5": "work_from_home",
"0, 6": "all_weekends"
}
}
}
};
calendar.set("customRenderer", {rules: rules,
filterFunction: function (date, node, rules) {
if (Y.Array.indexOf(rules, 'all_weekends') >= 0) {
node.addClass("redtext");
}
}
});
var curDate = calendar.get("date");
calendar.set("headerRenderer", function (curDate) {
var ydate = Y.DataType.Date,
output = ydate.format(curDate, {format: "%B %Y"}) +
" — " +
ydate.format(ydate.addMonths(curDate, calendar._paneNumber-1), {format: "%B %Y"});
return output;
});
Y.one("#updateCalendar").on('click', function () {
curDate = new Date(1950 + Math.round(Math.random()*100),
Math.round(Math.random()*12.49), 1);
calendar.set('date', curDate);
Y.one("#currentDate").setContent(calendar.get("date").toString());
});
Y.one("#togglePrevMonth").on('click', function () {
calendar.set('showPrevMonth', !(calendar.get("showPrevMonth")));
});
Y.one("#toggleNextMonth").on('click', function () {
calendar.set('showNextMonth', !(calendar.get("showNextMonth")));
});
Y.one("#getSelectedDates").on('click', function () {
Y.log(calendar.get('selectedDates'));
});
Y.one("#setNightSkin").on('click', function () {
Y.one('body').replaceClass('yui3-skin-sam','yui3-skin-night');
});
Y.one("#setBkgBlack").on('click', function () {
Y.one('html').setStyle('backgroundColor', '#000');
});
calendar.on("selectionChange", function (ev) {Y.log(ev);});
});