Basic Autocompleters

Basic autocompleters are bound to a static list or a function that returns a static list.
Static list datasource gets filtered automatically to return values that match user's input.
Function datasources manually filter a list according to custom needs.


(minimumChars: 0, typeAhead: false, autoSuggest: false, ignorePrefix: true)

(minimumChars: 1, typeAhead: false, autoSuggest: true, autoSuggestDelay: 100)

(minimumChars: 2, typeAhead: true, autoSuggest: true, autoSuggestDelay: 1000)