UI Component Reference - v2.63.2
    Preparing search index...

    Interface MultiSelectPanelOptions

    interface MultiSelectPanelOptions {
        multiple: true;
        options: SelectPanelOption[];
        search?: boolean;
        searchPlaceholderText?: string;
        selected?: number[];
    }

    Hierarchy

    • SelectPanelOptions
      • MultiSelectPanelOptions
    Index

    Properties

    multiple: true

    Indicates multiple options can be selected.

    List of options.

    search?: boolean

    Indicates whether a search input is shown. Defaults to false.

    searchPlaceholderText?: string

    Text to use for the search input placeholder. Defaults to "Search".

    selected?: number[]

    The indexes of the options that are selected (optional)