Allows users to select time values.
Initializes a new instance of a TimePicker control.
The DOM element associated with the TimePicker control.
The set of options to be applied initially to the TimePicker control. The options are the following: clock.
Gets or sets the type of clock to display (12HourClock or 24HourClock). It defaults to the user setting.
Gets or sets the current time of the TimePicker. Note that the date value is always July 15, 2011.
Specifies whether the TimePicker is disabled.
Gets the DOM element for the TimePicker.
Gets or sets the display pattern for the hour. The default hour pattern is hour.integer(2). You can change the hour pattern by changing the number of integers displayed.
Gets or sets the minute increment. For example, 15 specifies that the TimePicker minute control should display only the choices 00, 15, 30, 45.
Gets or sets the display pattern for the minute. The default minute pattern is minute.integer(2). You can change the minute pattern by changing the number of integers displayed.
Gets or sets the display pattern for the period. The default period pattern is period.abbreviated(2). You can change the period pattern by changing the number of integers displayed.
Adds an event listener.
The type (name) of the event.
The function that handles the event.
If true, specifies that capture should be initiated, otherwise false.
Raises an event of the specified type and with additional properties.
The type (name) of the event.
The set of additional properties to be attached to the event object when the event is raised.
boolean
true if preventDefault was called on the event, otherwise false.
Releases resources held by this TimePicker. Call this method when the TimePicker is no longer needed. After calling this method, the TimePicker becomes unusable.
Occurs when any of the controls are changed by the user.
An object that contains information about the event.
Raises an event of the specified type and with additional properties.
The type (name) of the event.
The set of additional properties to be attached to the event object when the event is raised.
boolean
true if preventDefault was called on the event, otherwise false.
Removes a listener for the specified event.
The name of the event for which to remove a listener.
The listener.
Optional. The same value that was passed to addEventListener for this listener. It may be omitted if it was omitted when calling addEventListener.