Change: function (sender, args)
sender. Event source.
args. Event information.
The Change event occurs on changing the date.
To execute the example, create the MonthCalendar component (see Example of creating the MonthCalendar component). Add the Change event handler.
MC.Change.add(function (sender, args)
{
alert(Date + MC.getCurrentDate())
})
After executing the example on changing the date in the calendar the information message concerning the current date is displayed.
Seebsp;also: