apex-grid
    Preparing search index...

    Interface ApexColumnPinningEvent<T>

    Event payload for the cancellable columnPinning event.

    interface ApexColumnPinningEvent<T extends object> {
        key: keyof T;
        next: PinPosition;
        previous: PinPosition;
    }

    Type Parameters

    • T extends object
    Index

    Properties

    Properties

    key: keyof T

    The target column key.

    The proposed pin position (null to unpin).

    previous: PinPosition

    The current pin position before the change (null if unpinned).