RichSelect API Overview
Initialization
<script>
import { RichSelect } from "wx-svelte-core";
const dataset = [
{id:1, name:"First option"},
{id:2, name:"Second option"},
{id:3, name:"Third option"}
]
</script>
<RichSelect options={dataset}/>
tip
- Visit the Features Guide to learn more about the control's functionality.
- Explore the samples to visualize the available features.
RichSelect Properties
disabled | defines whether a rich select is disabled |
error | defines whether error styling is applied to a rich select |
options | specifies a set of data items that will be used as rich select options |
placeholder | sets a placeholder for the text field |
title | sets a tooltip text with additional info about the control |
value | sets the value of a rich select |
RichSelect Events
select | fires when a new option is selected in a rich select |