reactive-table
reactive-table copied to clipboard
Export Complete Report of reactive table server side pagination
Hi I have implemented reactive table server side pagination in my reports section and its working fine but I want to export complete data of report. is there any way to export complete data in excel for reactive table server side pagination.
I have found some other way but it is exporting only the data which is on first page of Report.
Sorry, the reactive table publication will only give you one page at a time, so you'll have to write your own publication for exporting.
but if i am using meteor.publish and subscribing it... application hang due to bulk data so in this case what i need to do.. please let me know if you have any solution
i used reactive table server side pagination in my reports section because meteor.publish and subscribe hangs the application of bulk data
You might just have too much data to subscribe to all of it at once. If you're trying to download a report instead of see it in the application you could try generating it on the server side, but reactive table won't help with that.