Dockview
    Preparing search index...

    Interface IOverflowRow

    One rendered overflow row: the free headerOverflow tab renderer wrapped with activate-on-click, built by core and reused by the advanced overflow list so the row DOM + behaviour stay identical to the free dropdown.

    interface IOverflowRow {
        element: HTMLElement;
        panel: IDockviewPanel;
        activate(): void;
    }
    Index

    Properties

    Methods

    Properties

    element: HTMLElement

    The row wrapper (.dv-tab). Click-to-activate is already wired.

    Methods

    • Expand the panel's tab group if collapsed, activate the panel (origin 'user') and close the popover, identical to clicking the row. Used by the keyboard controller (Enter).

      Returns void