AdaptTable for Mantine

Right-to-left Mantine data table

An Arabic table mirrors the entire layout — search, sort arrows, pinned columns and the pager. Not just translated strings: a genuinely flipped axis.

The filters popover anchors and flips from the correct edge; that is the part only a real RTL page can show.

locale="ar" sets the strings and the direction. The table and the popover are Mantine.

locale="ar" flips the Mantine table and its Popover — the Filters trigger is Arabic, and the popover anchors from the inline-end edge.

The code

import { DataTable } from "@adapttable/mantine";

export function People({ rows, columns }) {
  return (
    <DataTable
      data={rows}
      columns={columns}
      rowKey={(row) => row.id}
      locale="ar"
      filtersMode="popover"
    />
  );
}

Install

pnpm add @adapttable/mantine @adapttable/core @mantine/core @mantine/hooks

The same feature in the other kits

More Mantine features

Reference: i18n-rtl. More of this kit: AdaptTable for Mantine, or the live demo.