textField
Description
binds MultiCombo options to the input field by the specified keyType
string
Default value
"label"
Example
<script>
const dataset = [
{id:1, name:"First option"},
{id:2, name:"Second option"},
{id:3, name:"Third option"}
]
</script>
<MultiCombo options={dataset} textField="name" placeholder="Select an option" />
Related article: Configuring the text of selected options
Related sample: MultiCombo