i am using calender from dhtmlxCalendar (dhtmlxSuite\dhtmlxCalendar\samples\03_events\01_calendar_onchangemonth)
for this i want to display my own event text to be displayed on the text area .
can you guide me
You need to modify onChangeMonth as you need:
mCal.attachEvent (“onChangeMonth”, mSelectMonth);
function mSelectMonth(curMonth, prevMonth) {
document.getElementById(‘mCalInput’).innerHTML = 'Previous month # : ’ + prevMonth + ’
Current month # ’ + curMonth;
return true;
}
Yes,
till now i am using dhtmlxscheduler.js in that i am saving event and it is displaying event in may view like (daily, monthly, yearly) now exactly in the dhtmlxCalendar can i pass these saved event and show the event when the mouse over on the event date (or it display on the text area )is it possible to integrate all together .
scheduler provide minicalendar feature. It would be better to use it:
dhtmlxScheduler/samples/05_calendar/01_select.html
dhtmlxScheduler/samples/05_calendar/04_layout.html