Overview

QuotesTable is a React component that displays all quotes created by an entity. The component shows each quote’s amount, status, issue date, validity date, and the counterpart to which they were sent.

Permissions

To access this component, the entity user must have read permissions for the receivable object. For more information, see List of permissions.

Preview

QuotesTable component preview
QuotesTable component preview

Usage

Use in the QuotesTable component in your application as shown:

React.js
1import { QuotesTable } from "@monite/sdk-react";
2
3...
4
5// TODO: This component must be rendered within the MoniteProvider wrapper
6const QuotesTablePage = () => {
7 return <QuotesTable />
8};

Props

The following table shows all QuotesTable component properties, their types, and description:

PropTypeDescription
onRowClickfunctionThis callback takes the identifier of the clicked row as a parameter and is triggered when a quotes table row is clicked.
onChangeSortfunctionThis callback is called when the current sorting order for any column is changed.