RevGrid - v0.9.3
    Preparing search index...

    An interface for providing access to records in a data store. Called by the Grid Adapter to retrieve data to display.

    interface RevRecordStore {
        recordCount: number;
        getRecord(index: number): RevRecord;
        getRecords(): readonly RevRecord[];
        setRecordEventers(recordsEventers: RecordsEventers): void;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    recordCount: number

    Get the number of current records available

    Methods

    • Gets the value of a record

      Parameters

      • index: number

        The record index

      Returns RevRecord

    • Retrieves the underlying records

      Returns readonly RevRecord[]

      An array of the currently available records The Grid Adapter will not modify the returned array