dijit.form.ComboBoxMixin
dojo.require("dijit.form.ComboBox");
defined in dijit/form/ComboBox.js
Usage
function () (view source)
FunctionsBack to top

When inputting characters using an input method, such as Asian languages, it will generate this event instead of onKeyDown event Note: this event is only triggered in FF (not in IE)
a11y code that puts the highlighted option in the textbox This way screen readers will know what is happening in the menu
Fill in the textbox with the first item from the drop down list, and highlight the characters that were auto-completed. For example, if user typed "CA" and the drop down list appeared, the textbox would be changed to "California" and "ifornia" would be highlighted.


callback when arrow is clicked

called magically when focus has shifted away from this widget and it's dropdown

handles keyboard events

additional code to set disablbed state of combobox node
PropertiesBack to top
If you type in a partial string, and then tab out of the `<input>` box, automatically copy the first entry displayed in the drop down list to the `<input>` field
Set this textbox to have a down arrow button. Defaults to true.
Set true if the ComboBox should ignore case when matching possible items
This is the item returned by the dojo.data.store implementation that provides the data for this cobobox, it's the currently selected item.
Argument to data provider. Specifies number of search results per page (before hitting "next" button)
A query that can be passed to 'store' to initially filter the items, before doing further filtering based on `searchAttr` and the key. Any reference to the `searchAttr` is ignored.
dojo.data query expression pattern. `${0}` will be substituted for the user text. `*` is used for wildcards. `${0}*` means "starts with", `*${0}*` means "contains", `${0}` means "is"
Searches pattern match against this field
Delay in milliseconds between when user types something and we start searching based on that value
Reference to data provider object used by this ComboBox