Pin Last column and first column is not working on rtl direction #551
Replies: 1 comment
-
|
Open-source projects are created, maintained and made better by people like Reem Assaf, whose contribution finally added RTL support to Mantine DataTable! 🎉🙏 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This is my DataTable code everything is working fine but pin last column and first column is not working on rtl direction, it work or ltr direction.
<DataTable height={550} withTableBorder highlightOnHover withColumnBorders striped verticalAlign="top" pinLastColumn columns={columns} fetching={isLoading} records={data?.data} page={data?.page ? data?.page : 1} onPageChange={handlePageChange} totalRecords={data?.total} recordsPerPage={data?.per_page ? data?.per_page : 20} sortStatus={sortStatus} onSortStatusChange={handleSortStatusChange} selectedRecords={selectedRecords} onSelectedRecordsChange={setSelectedRecords} shadow="sm" borderRadius="sm" loadingText={t("loading_data")} noRecordsText={t("no_records")}Beta Was this translation helpful? Give feedback.
All reactions