Enable export #122
-
Is it possible to add an export feature ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I think this kind of falls outside the scope of the project. Think about the implications: So, to cut a long story short, I'm of the opinion that you should implement your own export mechanism in your projects. |
Beta Was this translation helpful? Give feedback.
I think this kind of falls outside the scope of the project.
Think about the implications:
There's a potentially infinite number of ways to export data; different people will have different needs and opinions and there's simply no generic way of handling this.
Some would want their entire dataset to be exported (even if the table is showing a page).
There's also the problem of correctly formatting/localizing the exported data for Excel.
For instance, in my projects I've been using this feature with
exceljs
(an excellent package I highly recommend), which is not exactly trivial to use and requires heavy customization if you need useful output data.So, to cut a long story short, I'm of the…