We are using VueyeComponent to display a very paginated large table (with 300,000 rows).
Currently, the excel export button would export rows that are currently displayed:
const items = computed(() => {
return props.sharedState.currentPageItems;
});
However, many applications (including ours) require exporting the entire table for further processing.
Displaying the entire 300,000 in a single page can get us by, but most often result in crashing the HTML page.
I would argue that the Excel export button should export all the data passed to the table, or at least there should be a flag to set/control this behavior.
We are using VueyeComponent to display a very paginated large table (with 300,000 rows).
Currently, the excel export button would export rows that are currently displayed:
However, many applications (including ours) require exporting the entire table for further processing.
Displaying the entire 300,000 in a single page can get us by, but most often result in crashing the HTML page.
I would argue that the Excel export button should export all the data passed to the table, or at least there should be a flag to set/control this behavior.