HomeGuidesRecipesAPI ExplorerForumSupport
Partner Portal
Partner Portal

ApprovalPoliciesTable

The ApprovalPoliciesTable component renders a table that displays the list of existing approval policies of the authenticated entity. The component supports searching, filtering, and pagination between these approval policies.

📘

Permissions

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

Preview

`ApprovalPoliciesTable` component preview.

ApprovalPoliciesTable component preview.

Usage

Bring in the ApprovalPoliciesTable component into your application as shown:

import { ApprovalPoliciesTable } from "@monite/sdk-react"

// This component must be rendered within the MoniteProvider wrapper
const ApprovalPoliciesTablePage = () => {
  return <ApprovalPoliciesTable />;
};

Props

The following table shows all ApprovalPoliciesTable component properties, their types, and descriptions:

PropTypeDescription
onChangeFilterfunctionThis callback is triggered when the filtering options are changed.
onChangeSortfunctionThis callback is called when the current sorting order for any column is changed. It returns the newly sorted field and order.
onRowClickfunctionThis callback takes the identifier of the clicked row as a parameter and is triggered when an approval policy table row is clicked.

The onChangeSort takes one argument whose value is an object with the following fields:

  • sort - the field name of the column whose sort order was changed. For example, policy_name.
  • order - the new sort order, either asc or desc
(  
  "sort": "ApprovalPolicyCursorFields",  
  "order": "asc" | "desc" | null  
) => void