For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
API StatusPartner Portal
HomeGuidesAPI ExplorerSDKsGitHubSupport
HomeGuidesAPI ExplorerSDKsGitHubSupport
  • Monite SDK
    • Overview
  • Drop-in
    • Drop-in overview
    • Drop-in theming
    • Drop-in localization
    • Iframe App
  • React SDK
    • Overview
      • Overview
      • ApprovalPolicies
      • ApprovalPoliciesTable
      • ApprovalPolicyDetails
      • ApprovalRequests
      • ApprovalRequestsTable
      • CounterpartDetails
      • Counterparts
      • CounterpartsTable
      • CreditNotesTable
      • DocumentNumber
      • InvoiceDetails
      • InvoicesTable
      • LayoutAndLogo
      • Onboarding
      • OtherSettings
      • PayableDetails
      • Payables
      • PayablesTable
      • ProductDetails
      • Products
      • ProductsTable
      • QuotesTable
      • Receivables
      • ReceivablesTable
      • RolesAndPolicies
      • TagFormModal
      • Tags
      • TagsTable
      • TemplateSettings
      • UserRoleDetails
      • UserRoles
      • UserRolesTable
    • SDK customization
    • SDK localization
    • SDK theming
    • SDK releases
    • v4 migration guide
LogoLogo
API StatusPartner Portal
On this page
  • Overview
  • Permissions
  • Preview
  • Usage
  • Props
React SDKComponents and wrappers

TagsTable component

Was this page helpful?
Previous

TemplateSettings

Next
Built with

Overview

TagsTable is a React component that displays all tags created by an entity and allows renaming and deleting these tags.

Permissions

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

Preview

TagsTable component preview
TagsTable component preview
You can move and organize the columns of the table the way you prefer.

Usage

Use the Tagstable component in your application as shown:

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

Props

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

PropTypeDescription
onChangeSortfunctionThis callback is called when the current sorting order for any column is changed. It returns the newly sorted field and order.

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

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