error
Description
defines whether error styling is applied to a MultiComboType
boolean
Default value
false
Example
<script>
const dataset = [
{id:1, name:"First option"},
{id:2, name:"Second option"},
{id:3, name:"Third option"}
]
</script>
<MultiCombo options={dataset} value={[1,2]} error={true}/>
Details
The property is useful during a form validation. If the property is set to true
(or just specified without a value) and the input value fails validation, a MultiCombo gets red error styling.
To add a red error label for the control, use the error property of the Field control:
<script>
import { MultiCombo, Field } from "wx-svelte-core";
</script>
<Field label="Error" error let:id>
<MultiCombo {id} error={true}/> <!-- equals to <MultiCombo {id} error/> -->
</Field>
Related article: Styling an option validation error
Related sample: MultiCombo