Member Junction
    Preparing search index...

    A generic, view-type-agnostic request from a renderer for the host to change how it loads the record set. Every field is optional; the host applies whatever is present. No field names a specific view type — these are universal data-access concepts.

    interface ViewDataRequest {
        loadAll?: boolean;
        page?: number;
        pageSize?: number;
        sort?: { direction: "asc" | "desc"; field: string }[];
    }
    Index

    Properties

    loadAll?: boolean

    When true, the host loads the full result set (up to its safety cap) instead of paginating.

    page?: number

    One-based page to load (for paginated views).

    pageSize?: number

    Page size to load.

    sort?: { direction: "asc" | "desc"; field: string }[]

    Desired sort, applied to the host's RunView OrderBy. Empty/omitted clears sorting.