Member Junction
    Preparing search index...

    Interface KanbanCardMovedEvent

    Event emitted when a card is dragged from one column to another.

    interface KanbanCardMovedEvent {
        Card: KanbanCardData;
        FromColumn: string;
        ToColumn: string;
    }
    Index

    Properties

    The card that was moved.

    FromColumn: string

    The column key the card was dragged from.

    ToColumn: string

    The column key the card was dropped into.