DataTable: Allow duplicates key in header with different title #1789
mrbu-solutions
started this conversation in
Ideas
Replies: 1 comment
-
The display values don't have to be unique. <DataTable
headers={[
{ key: "date", value: "Time" },
{ key: "time", value: "Time" },
]}
/> |
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
-
Right now, DataTable won't allow duplicate key names in the header. I've got an error when trying:
In some scenario, if I have a timestamp field data and wants to display at one column as Date only and the other column as Time only, I can't accomplish such.
Beta Was this translation helpful? Give feedback.
All reactions