Pin Last column and first column is not working on rtl direction #551
Unanswered
samimhamza
asked this question in
Q&A
Replies: 0 comments
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