@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface ITableRowRenderingStrategy

    Contract for a table body rendering strategy.

    Each implementation controls how rows are displayed in the table body and how programmatic scrolling to a specific row is performed.

    interface ITableRowRenderingStrategy {
        scrollToIndex(index: number): void;
    }
    Index

    Methods

    • Scroll the row at the given index into the visible area.

      Parameters

      • index: number

      Returns void