Skip to main content

MultiCombo API Overview

Initialization

<script>
import { MultiCombo } from "@wx/svelte-core";

const dataset = [
{id:1, name:"First option"},
{id:2, name:"Second option"},
{id:3, name:"Third option"}
]
</script>

<MultiCombo options={dataset}/>
tip
  • Visit the Features Guide to learn more about the control's functionality.
  • Explore the samples to visualize the available features.

MultiCombo Properties

checkboxesdefines whether MultiCombo options have checkboxes next to them
disableddefines whether a MultiCombo is disabled
errordefines whether error styling is applied to a MultiCombo
optionsspecifies a set of data items that will be used as MultiCombo options
placeholdersets the text of the input's placeholder
textfieldbinds MultiCombo options to the input field by the specified key
titlesets a tooltip text with additional info about the control
valuesspecifies the selected values

MultiCombo Events

selectfires when a new option is selected in a MultiCombo