AboutSupportDeveloper GuideVersion 22.3.18

Interface BaseCustomDropdownItem<Action>

interface BaseCustomDropdownItem<Action> {
    action?: Action;
    checked?: boolean;
    disabled?: boolean;
    iconUrl?: string;
    options?: (BaseCustomDropdownConfig | BaseCustomDropdownItem<any>)[];
    parentHover?: boolean;
    separator?: boolean;
    tooltip?: string;
}

Type Parameters

  • Action = any

Hierarchy

Properties

action?: Action

icon URL for icon image

checked?: boolean

Is this dropdown item checked? Any value other than undefined will decorate the dropdown option as a checkbox option.

disabled?: boolean

Disable custom button true or false

iconUrl?: string

icon URL for icon image

parentHover?: boolean
separator?: boolean
tooltip?: string