SelectDay: function(sender, args)
sender. Event source.
args. Event information.
The SelectDay event occurs on selecting the day in calendar.
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: