The default Filtering Select allows you to type into the input field in order to select an option by matching the start of the list values.
As you type it auto completes the first option it matches.
The default behaviour effectively uses the following Custom attribute settings (for V4 onwards):
data-dojo-props queryExpr:"${0}*", autoComplete:true, highlightMatch:"all"
However, if you would like te Filtering Select to match at any point in the string, and not auto complete, then you can use the following settings:
data-dojo-props queryExpr:"*${0}*", autoComplete:false, highlightMatch:"none"
Note: For version 3.* The queryExpr and autoComplete would be added as two separate custom attributes.
As you type it auto completes the first option it matches.
The default behaviour effectively uses the following Custom attribute settings (for V4 onwards):
data-dojo-props queryExpr:"${0}*", autoComplete:true, highlightMatch:"all"
However, if you would like te Filtering Select to match at any point in the string, and not auto complete, then you can use the following settings:
data-dojo-props queryExpr:"*${0}*", autoComplete:false, highlightMatch:"none"
Note: For version 3.* The queryExpr and autoComplete would be added as two separate custom attributes.