Is there support for export/import via CSV/excel? #276
-
Hey, We're currently using ReactGrid in our app and need to start adding import/export functionality |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
And how can we help? RG (ReactGrid) stores cells data in store, and based on data that each cell, RG will render this data in grid, that contains cells rendered ad separate div's. If you want to create export functionality, I would suggest you to create function that will read and export this data to external file, that can be readen by Excel API. Note, that Excel API has no "cell" information, but a |
Beta Was this translation helpful? Give feedback.
-
This ability is very good. It is a very common requirement. Does it support it in v5? |
Beta Was this translation helpful? Give feedback.
And how can we help?
RG (ReactGrid) stores cells data in store, and based on data that each cell, RG will render this data in grid, that contains cells rendered ad separate div's. If you want to create export functionality, I would suggest you to create function that will read and export this data to external file, that can be readen by Excel API. Note, that Excel API has no "cell" information, but a
Range
object.