@helix-x/datagrid-ui - v0.1.2
    Preparing search index...

    Interface HxRowsResponse<T>

    What the server returns for one HxRowsRequest.

    interface HxRowsResponse<T> {
        lastRow: number;
        rows: T[];
    }

    Type Parameters

    • T

      The row type.

    Index
    lastRow: number

    Total row count across all pages — not rows.length. This is what drives the pager. Return -1 when the total is genuinely unknown.

    rows: T[]

    The rows for the requested page only, not the whole result set.