DateTimePicker.SelectDay

Syntax

SelectDay: function(sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The SelectDay event occurs on selecting the day in calendar.

Example

To execute the example, create the DateTimePicker component (see Example of Creating the DateTimePicker Component) named DTP. Add the SelectDay event handler:

DTP.SelectDay.add(function (sender, args)

{

     alert(Day: + args.Day.No);

})

After executing the example on selecting the day, the message with the current day value in the component is displayed.

See also:

DateTimePicker