Function
Object
Function
Event
Connect to this function to receive notifications of mouse click events.
Function
Event
Connect to this function to receive notifications of mouse double click events.
Function
Event
Connect to this function to receive notifications of keys being pressed down.
Function
Event
Connect to this function to receive notifications of printable keys being typed.
Function
Event
Connect to this function to receive notifications of keys being released.
Function
Event
Connect to this function to receive notifications of when the mouse button is pressed down.
Function
Event
Connect to this function to receive notifications of when the mouse moves over nodes contained within this widget.
Function
Event
Connect to this function to receive notifications of when the mouse moves off of nodes contained within this widget.
Function
Event
Connect to this function to receive notifications of when the mouse moves onto nodes contained within this widget.
Function
Event
Connect to this function to receive notifications of when the mouse moves off of this widget.
Function
Event
Connect to this function to receive notifications of when the mouse moves onto this widget.
Function
Event
Connect to this function to receive notifications of when the mouse button is released.
Function
Function
Called when someone connects to one of my handlers. "Turn on" that handler if it isn't active yet. This is also called for every single initialization parameter so need to do nothing for parameters like "id".
Boolean
This widget or a widget it contains has focus, or is "active" because it was recently clicked.
Function
Return true if this widget can currently be focused and false if not
Function
Called when the widget becomes "active" because it or a widget inside of it either has focus, or has recently been clicked.
Function
Called when the widget stops being "active" because focus moved to something outside of it, or the user clicked somewhere outside of it, or the widget was hidden.
Function
This is where widgets do processing for when they are active, such as changing CSS classes. See onFocus() for more details.
Function
This is where widgets do processing for when they stop being active, such as changing CSS classes. See onBlur() for more details.
Function
Deprecated. Use set() instead.
Function
The property to get or set. If an object is passed here and not a string, its keys are used as names of attributes to be set and the value of the object as values to set in the widget.
Optional. If provided, attr() operates as a setter. If omitted, the current value of the named property is returned.
Set or get properties on a widget instance.
String[
List of nodes that correctly handle click events via native browser support, and don't need dijit's help
Function
Connects specified obj/event to specified method of this object and registers for disconnect() on widget destroy.
Provide widget-specific analog to dojo.connect, except with the implicit use of this widget as the target object. This version of connect also provides a special "ondijitclick" event which triggers on a click or space or enter keyup. Events connected with `this.connect` are disconnected upon destruction.
A handle that can be passed to `disconnect` in order to disconnect before the widget is destroyed.
_Widget.Handle
var btn = new dijit.form.Button(); // when foo.bar() is called, call the listener we're going to // provide in the scope of btn btn.connect(foo, "bar", function(){ console.debug(this.toString()); });
Function
Internal method called when this widget is made visible. See `onShow` for details.
Function
Called when this widget becomes the selected pane in a `dijit.layout.TabContainer`, `dijit.layout.StackContainer`, `dijit.layout.AccordionContainer`, etc. Also called to indicate display of a `dijit.Dialog`, `dijit.TooltipDialog`, or `dijit.TitlePane`.
Function
Called when another widget becomes the selected pane in a `dijit.layout.TabContainer`, `dijit.layout.StackContainer`, `dijit.layout.AccordionContainer`, etc. Also called to indicate hide of a `dijit.Dialog`, `dijit.TooltipDialog`, or `dijit.TitlePane`.
Function
Called when this widget is being displayed as a popup (ex: a Calendar popped up from a DateTextBox), and it is hidden. This is called from the dijit.popup code, and should not be called directly. Also used as a parameter for children of `dijit.layout.StackContainer` or subclasses. Callback if a user tries to close the child. Child will be closed if this function returns true.
Boolean
Function
Object
Object