Custom Values
By default, when the Enter key is pressed or after the component loses focus, values that do not appear in the supplied list of items are dismissed.
To configure the ComboBox to accept custom values, set the allowCustom property to true.
Primitive Values
If the component is bound to primitive values (strings, numbers, or other), set the allowCustom property to true.
This approach is valid when the component is either bound to a dataset of primitive (strings, numbers, or other) or complex values (objects), and the
valuePrimitiveproperty is set totrue.
The following example demonstrates how to allow custom primitive values.
Complex Values
If the component is bound to objects, set the allowCustom property to true and provide a valueNormalizer function. The purpose of the valueNormalizer function is to convert the user text input into an object that can be recognized as a valid ComboBox value.
The
valueNormalizerfunction receivesObservable<string>as an argument and is expected to return a single normalized value wrapped asObservable, which will be further processed by the component.
The following example demonstrates how to allow custom object values.
Using with a Remote Service
The following example demonstrates how to handle custom object values through a remote service.
Handling Errors
The following example demonstrates how to handle errors that occur while normalizing custom object values through a remote service.