jsx3.gui.TabbedPaneAPI


ChangeFires when the active tab changes.
Ctrl DropFires after the user drops an object on this tabbed pane while pressing the Ctrl key.
DestroyFires after this tabbed pane is removed from the DOM.
DropFires after the user drops an object on this tabbed pane.

Changejsxchange

Fires when the active tab changes.

Context Variables

this {jsx3.gui.TabbedPane} - the object that publishes this event.

Dropjsxdrop

Fires after the user drops an object on this tabbed pane.

Context Variables

this {jsx3.gui.TabbedPane} - the object that publishes this event.
objEVENT {jsx3.gui.Event} - the browser event that triggers this event.
objSOURCE {jsx3.gui.Block} - the object where the drag begins.
strDRAGTYPE {String} - the type of drag (JSXDragType).
strDRAGID {String} - the id of dragged element (JSXDragId).
objGUI {HTMLElement} - the HTML element acted upon.

Ctrl Dropjsxctrldrop

Fires after the user drops an object on this tabbed pane while pressing the Ctrl key.

Context Variables

this {jsx3.gui.TabbedPane} - the object that publishes this event.
objEVENT {jsx3.gui.Event} - the browser event that triggers this event.
objSOURCE {jsx3.gui.Block} - the object where the drag begins.
strDRAGTYPE {String} - the type of drag (JSXDragType).
strDRAGID {String} - the id of dragged element (JSXDragId).
objGUI {HTMLElement} - the HTML element acted upon.

Destroyjsxdestroy

Fires after this tabbed pane is removed from the DOM.

Context Variables

this {jsx3.gui.TabbedPane} - the object that publishes this event.
objPARENT {jsx3.app.Model} - the parent of this tabbed pane before it is removed from the DOM.