MonthCalendar.Change

Syntax

Change: function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The Change event occurs on changing the date.

Example

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:

MonthCalendar