Example of Object Value Binding in ASP.NET Core AutoComplete Control
The sample showcases the functionality of object value binding in the AutoComplete component. Users can type
characters into the AutoComplete field and select an item from the suggestion list. The corresponding object
value of the selected item is then assigned to the value property. In the property panel, the value
property of the selected item's will be displayed.
DEMO
SOURCE
The AutoComplete
component generates a list of suggestions that match the characters typed by the
user. Users can then select an item from this list. Once an item is selected, its associated object value is
automatically assigned to the value
property. This behavior is enabled by the
allowObjectBinding
property.