Script API - v1.26.10.22
    Preparing search index...

    Type Alias ICollectionTreeEntryDropdownItemParams

    Parameters to create dropdown in a collection tree entry

    type ICollectionTreeEntryDropdownItemParams = {
        enabled?: boolean;
        menuOptions?: ICollectionTreeEntryDropdownItemMenuOption[];
        onChange?: (
            newValue: string,
            oldValue: string,
            item: ICollectionTreeEntryDropdownItem,
        ) => void;
        title?: LocalizedString;
        tooltip?: BasicTooltipContent;
        value: IObservableProp<string>;
        visible?: boolean;
    }
    Index

    Properties

    enabled?: boolean
    onChange?: (
        newValue: string,
        oldValue: string,
        item: ICollectionTreeEntryDropdownItem,
    ) => void
    value: IObservableProp<string>
    visible?: boolean