Member Junction
    Preparing search index...

    Interface FormToolbarItemClickEventArgs

    Event arguments emitted or passed to handlers when a toolbar item is clicked.

    interface FormToolbarItemClickEventArgs {
        Cancel?: boolean;
        EditMode: boolean;
        FormComponent?: unknown;
        Item: FormToolbarItemConfig;
        ItemKey: string;
        Record: BaseEntity;
    }
    Index

    Properties

    Cancel?: boolean

    Set to true to cancel default behavior (if applicable)

    EditMode: boolean

    Whether the form is currently in edit mode

    FormComponent?: unknown

    Optional reference to the host form component

    The configuration of the clicked toolbar item

    ItemKey: string

    The unique key of the clicked toolbar item

    Record: BaseEntity

    The entity record being viewed/edited