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.
Highlights the string entered by the user in the menu. By default this
highlights the first occurence found. Override this method
to implement your custom highlighing.
If user types 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
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.
This specifies what query ComboBox/FilteringSelect sends to the data store,
based on what the user has typed. Changing this expression will modify
whether the drop down shows only exact matches, a "starting with" match,
etc. Use it in conjunction with highlightMatch.
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"