.addSelected | Function | Move the selected nodes af an passed Select widget instance to this Select widget. |
.alt | String | Corresponds to the native HTML <input> element's attribute. |
.attributeMap | | |
.baseClass | | |
.buildRendering | Function | Construct the UI for this widget from a template, setting this.domNode. |
.class | String | HTML class attribute |
.closable | | |
.connect | Function | Connects specified obj/event to specified method of this object and registers for disconnect() on widget destroy. Special event: "ondijitclick" triggers on a click or enter-down or space-up Similar to dojo.connect() but takes three arguments rather than four. |
.containerNode | DomNode | holds child elements. "containerNode" is generally set via a dojoAttachPoint assignment and it designates where children of the src dom node will be placed |
.create | Function | |
.destroy | Function | |
.destroyDescendants | Function | Recursively destroy the children of this widget and their descendants. |
.destroyRecursive | Function | Destroy this widget and it's descendants. This is the generic "destructor" function that all widget users should call to cleanly discard with a widget. Once a widget is destroyed, it's removed from the manager object. |
.destroyRendering | Function | Destroys the DOM nodes associated with this widget |
.dir | String | Unsupported by Dijit, but here for completeness. Dijit only supports setting text direction on the entire document. Bi-directional support, as defined by the [HTML DIR](http://www.w3.org/TR/html401/struct/dirlang.html#adef-dir) attribute. Either left-to-right "ltr" or right-to-left "rtl". |
.disabled | Boolean | Should this widget respond to user input? In markup, this is specified as "disabled='disabled'", or just "disabled". |
.disconnect | Function | Disconnects handle created by this.connect. Also removes handle from this widget's list of connects |
.dojoAttachEvent | | |
.dojoAttachPoint | | |
.domNode | | |
.focus | Function | |
.getDescendants | Function | Returns all the widgets that contained by this, i.e., all widgets underneath this.containerNode. |
.getSelected | Function | Access the NodeList of the selected options directly |
.getValue | Function | Returns an array of the selected options' values |
.id | String | a unique, opaque ID string that can be assigned by users or by the system. If the developer passes an ID which is known not to be unique, the specified ID is ignored and the system-generated ID is used instead. |
.intermediateChanges | Boolean | Fires onChange for each value change or only on demand |
.invertSelection | Function | Invert the selection |
.isFocusable | Function | |
.isLeftToRight | Function | Checks the DOM to for the text direction for bi-directional support |
.lang | String | Rarely used. Overrides the default Dojo locale used to render this widget, as defined by the [HTML LANG](http://www.w3.org/TR/html401/struct/dirlang.html#adef-lang) attribute. Value must be among the list of locales specified during by the Dojo bootstrap, formatted according to [RFC 3066](http://www.ietf.org/rfc/rfc3066.txt) (like en-us). |
.layoutAlign | | |
.maxSize | | |
.minSize | | |
.name | String | Name used when submitting form; same as "name" attribute or plain HTML elements |
.nodesWithKeyClick | | |
.onBlur | Function | stub function. Override or connect to this method to receive notifications for when the widget moves out of focus. |
.onChange | Function | callback when value is changed |
.onClose | Function | Callback if someone tries to close the child, child will be closed if func returns true |
.onFocus | Function | stub function. Override or connect to this method to receive notifications for when the widget moves into focus. |
.params | | |
.postCreate | Function | |
.postMixInProperties | Function | Called after the parameters to the widget have been read-in, but before the widget template is instantiated. Especially useful to set properties that are referenced in the widget template. |
.postscript | Function | |
.readOnly | Boolean | Should this widget respond to user input? In markup, this is specified as "readOnly". Similar to disabled except readOnly form values are submitted |
.region | | |
.reset | Function | |
.resize | Function | |
.selected | | |
.setAttribute | Function | |
.setDisabled | Function | Set disabled state of widget (Deprecated). |
.setValue | Function | Set the value(s) of this Select based on passed values |
.size | | |
.sizeMin | | |
.sizeShare | | |
.splitter | | |
.srcNodeRef | DomNode | pointer to original dom node |
.srcNodeRef.id | | |
.startup | Function | Called after a widget's children, and other widgets on the page, have been created. Provides an opportunity to manipulate any children before they are displayed. This is useful for composite widgets that need to control or layout sub-widgets. Many layout widgets can use this as a wiring phase. |
.stateModifier | | |
.staticClass | | |
.style | String | HTML style attribute |
.tabIndex | Integer | Order fields are traversed when user hits the tab key |
.templateNode | DomNode | a node that represents the widget template. Pre-empts both templateString and templatePath. |
.templatePath | String | Path to template (HTML file) for this widget relative to dojo.baseUrl |
.templateString | | |
.title | | |
.toString | Function | |
.type | String | Corresponds to the native HTML <input> element's attribute. |
.uninitialize | Function | stub function. Override to implement custom widget tear-down behavior. |
.value | String | Corresponds to the native HTML <input> element's attribute. |
.waiRole | | |
.waiState | | |
.widgetsInTemplate | Boolean | should we parse the template to find widgets that might be declared in markup inside it? false by default. |
._active | | |
._attaches | | |
._attachTemplateNodes | Function | Iterate through the template and attach functions and nodes accordingly. |
._connects | | |
._fillContent | Function | relocate source contents to templated container node this.containerNode must be able to receive children, or exceptions will be thrown |
._getValueDeprecated | | |
._handleOnChange | Function | set the value of the widget. |
._hasBeenBlurred | | |
._hovering | | |
._lastValue | | |
._lastValueReported | | |
._layoutHack | Function | work around table sizing bugs on FF2 by forcing redraw |
._layoutHackHandle | | |
._ltr | | |
._mouseDown | | |
._multiValue | | |
._onBlur | Function | |
._onChange | Function | |
._onChangeActive | | |
._onChangeMonitor | | |
._onFocus | Function | |
._onMouse | Function | Sets _hovering, _active, and stateModifier properties depending on mouse state, then calls setStateClass() to set appropriate CSS classes for this.domNode. To get a different CSS class for hover, send onmouseover and onmouseout events to this method. To get a different CSS class while mouse button is depressed, send onmousedown to this method. |
._resetValue | | |
._setStateClass | Function | Update the visual state of the widget by setting the css classes on this.domNode (or this.stateNode if defined) by combining this.baseClass with various suffixes that represent the current widget state(s). In the case where a widget has multiple states, it sets the class based on all possible combinations. For example, an invalid form widget that is being hovered will be "dijitInput dijitInputInvalid dijitInputHover dijitInputInvalidHover". For complex widgets with multiple regions, there can be various hover/active states, such as "Hover" or "CloseButtonHover" (for tab buttons). This is controlled by a stateModifier="CloseButton" attribute on the close button node. The widget may have one or more of the following states, determined by this.state, this.checked, this.valid, and this.selected: Error - ValidationTextBox sets this.state to "Error" if the current input value is invalid Checked - ex: a checkmark or a ToggleButton in a checked state, will have this.checked==true Selected - ex: currently selected tab will have this.selected==true In addition, it may have one or more of the following states, based on this.disabled and flags set in _onMouse (this._active, this._hovering, this._focused): Disabled - if the widget is disabled Active - if the mouse (or space/enter key?) is being pressed down Focused - if the widget has focus Hover - if the mouse is over the widget |
._skipNodeCache | | |
._started | | |
._stringRepl | Function | |
._supportingWidgets | | |