apex-grid
    Preparing search index...

    Interface ExportFormat

    Describes an export format offered by the grid's toolbar menu.

    The toolbar renders one menu item per entry returned by ApexGrid.exportFormats and dispatches the chosen id to ApexGrid.exportAs. The community grid offers 'csv'; derived grids (e.g. apex-grid-enterprise) extend the list (e.g. with 'xlsx').

    interface ExportFormat {
        id: string;
        label: string;
    }
    Index

    Properties

    Properties

    id: string

    Stable format identifier, e.g. 'csv'.

    label: string

    Menu item label, e.g. 'Export CSV'.