ixfx
    Preparing search index...

    Type Alias SelectHandler

    SelectHandler: {
        get disabled(): boolean;
        set disabled(value: boolean): void;
        get index(): number;
        get isSelectedPlaceholder(): boolean;
        get value(): string;
        select(index?: number, trigger?: boolean): void;
        setOpts(options: readonly string[], preSelect?: string): void;
    }

    SELECT handler

    Type declaration

    • getdisabled():boolean
    • setdisabled(value:boolean):void

      Gets/Sets disabled

    • getindex():number

      Sets selected index

    • getisSelectedPlaceholder():boolean

      True if currently selected item is the placeholder

    • getvalue():string

      Gets value

    • select:function
      • Select item by index

        Parameters

        • Optionalindex: number

          Index

        • Optionaltrigger: boolean

          If true, triggers change event

        Returns void

    • setOpts:function
      • Set options

        Parameters

        • options: readonly string[]

          Options

        • OptionalpreSelect: string

          Item to preselect

        Returns void