Собственно при клике на YUI Calendar хочу чтобы происходило событие 'gotoDate' в jQuery fullcalendar, сделал вот так, однако ничего не происходит:
UI().use('calendar', 'datatype-date', 'cssbutton', function(Y) {
var callendar = new Y.Calendar({
contentBox: "#mycalendar",
width:'240px',
showPrevMonth: true,
showNextMonth: true,
date: new Date()}).render();
var dtdate = Y.DataType.Date;
callendar.selectDates(new Date());
callendar.on("selectionChange", function (ev) {
var newDate = ev.newSelection[0];
calendar.fullCalendar('gotoDate', dtdate.format(newDate));
});
});