Function
Base class for widgets corresponding to native HTML elements such as <checkbox> or <button>, which can be children of a <form> node or a `dojox.mobile.app.Form` widget.
Represents a single HTML element. All these widgets should have these attributes just like native HTML input elements. You can set them during widget construction or afterwards, via `dijit._WidgetBase.attr`. They also share some common methods.
String
Name used when submitting form; same as "name" attribute or plain HTML elements
String
Corresponds to the native HTML <input> element's attribute.
String
Corresponds to the native HTML <input> element's attribute.
String
Corresponds to the native HTML <input> element's attribute.
Boolean
Should this widget respond to user input? In markup, this is specified as "disabled='disabled'", or just "disabled".
Boolean
Fires onChange for each value change or only on demand
Boolean
On focus, should this widget scroll into view?
Function
Function
Function
Function
Function
Tells if this widget is focusable or not. Used internally by dijit.
Function
Put focus on this widget
Function
Compare 2 values (as returned by attr('value') for this widget).
Function
Callback when this widget's value is changed.
Boolean
Indicates that changes to the value should call onChange() callback. This is false during widget initialization, to avoid calling onChange() when the initial value is set.
Function
the new value
For a slider, for example, dragging the slider is priorityChange==false, but on mouse up, it's priorityChange==true. If intermediateChanges==true, onChange is only called form priorityChange=true events.
Called when the value of the widget is set. Calls onChange() if appropriate
Function
Function
Function
Function
Function
Base class for widgets corresponding to native HTML elements such as <input> or <select> that have user changeable values.
Function
Function
Function
Hook so attr('value', value) works.
Sets the value of the widget. If the value has changed, then fire onChange event, unless priorityChange is specified as null (or false?)
Function
Hook so attr('value') works.
Function
Restore the value to the last value passed to onChange
Function
Reset the widget's value to what it was at initialization time
Object
Object
Object