jsx3.gui.DatePickerAPI
| Change | Fires after the user changes the value of this date picker. |
| Destroy | Fires after this date picker is removed from the DOM. |
| Hide | Fires after the calendar is hidden. |
| Input | Fires after the user types text in the date field and before the change is committed. |
| Menu | Fires after the user right-clicks this date picker and before the bound context menu displays. |
| Show | Fires after the calendar is revealed. |
Fires after the user changes the value of this date picker. Canceling this event prevents the change from occurring.
Cancelable: Evaluate to false to cancel event.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
oldDATE {
Date} - the old value.
newDATE {
Date} - the new value.
Fires after the user types text in the date field and before the change is committed. Canceling this event prevents committing the input.
Cancelable: Evaluate to false to cancel event.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
strINPUT {
String} - the text entered by the user.
Return Fields
objDATE {
Date} - specifies the parsed date, in which case the input text is not parsed by the date format.
strINPUT {
String} - modifies the text entered by the user before it is parsed by the date format.
Fires after the calendar is revealed.
Return Fields
objDATE {
Date} - specifies the year and month to display upon opening the calendar.
Fires after the calendar is hidden.
Fires after the user right-clicks this date picker and before the bound context menu displays. Canceling this event prevents the menu from displaying.
Cancelable: Evaluate to false to cancel event.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
Return Fields
objMENU {
jsx3.gui.Menu} - use this field to override the default menu with an instance of
jsx3.gui.Menu.
Fires after this date picker is removed from the DOM.
Context Variables
objPARENT {
jsx3.app.Model} - the parent of this date picker before it is removed from the DOM.
Copyright © 2001-2007, TIBCO Software Inc.