Function RecordView

Renders a view to display record data with search capabilities.

  • Type Parameters

    • Data extends unknown = IData

      The type of the data object.

    • Payload = any

      The type of the payload object.

    Parameters

    • props: IRecordViewProps<Data, Payload>

      The component props.

    Returns Element

    The rendered component.

Properties

Properties

excelExport: ((data: IData, sheetName??: string) => void)

Type declaration

    • (data, sheetName?): void
    • Export data to Excel.

      Parameters

      • data: IData

        The data to export to Excel.

      • OptionalsheetName: string = "Records"

        The name of the sheet in the Excel file. Default is "Records".

      Returns void