jsx3.gui.DialogAPI
| After Move | Fires when the user releases the mouse button after moving this dialog across the screen. |
| After Resize | Fires when the user releases the mouse button after resizing this dialog by dragging its lower-right corner. |
| Before Move | Fires when the user depresses the mouse button on the caption bar of this dialog. |
| Before Resize | Fires when the user depresses the mouse button on the lower-right corner of this dialog. |
| Destroy | Fires after this dialog is removed from the DOM. |
Fires when the user depresses the mouse button on the caption bar of this dialog. Canceling this event prevents this dialog from moving.
Cancelable: Evaluate to false to cancel event.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
Return Fields
bCONSTRAINX {
boolean} - set to
true if only vertical movement allowed. For example:
o = {bCONSTRAINX:true}; bCONSTRAINY {
boolean} - set to
true if only horizontal movement allowed. For example:
o = {bCONSTRAINY:true};
Fires when the user releases the mouse button after moving this dialog across the screen.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
Fires when the user depresses the mouse button on the lower-right corner of this dialog. Canceling this event prevents this window from resizing.
Cancelable: Evaluate to false to cancel event.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
Fires when the user releases the mouse button after resizing this dialog by dragging its lower-right corner.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
Fires after this dialog is removed from the DOM.
Context Variables
objPARENT {
jsx3.app.Model} - the parent of this dialog before it is removed from the DOM.
Copyright © 2001-2007, TIBCO Software Inc.