OpenFin Workspace API
    Preparing search index...

    Interface BaseCustomDropdownItem<Action>

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

    Type Parameters

    • Action = any

    Hierarchy

    Index
    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