How to have a row numbering column? #4333
Answered
by
ashkankiani
ashkankiani
asked this question in
Q&A
-
I want to insert the number for each row in the first column of the table. 1, 2, 3, 4 and... |
Beta Was this translation helpful? Give feedback.
Answered by
ashkankiani
Aug 23, 2022
Replies: 1 comment
-
solved: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ashkankiani
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
solved:
columnHelper.accessor('id', { header: () => 'ID', cell: info => parseInt(info.row.id) + 1, }),