Exporting specific selected records from datagrid

0
Question: I'm trying to export specific data from my application. The data is selected either manually or filtered using search filters in data grids. However, the built-in export to Excel feature only works well for filtered results, but I need to select specific results to export. Context: The current export to Excel function doesn't allow me to choose individual results after filtering. Error/Issue: No specific error message is mentioned, but the issue is that the export to Excel feature doesn't support selecting individual results after applying filters. Example: For instance, if I have a data grid with 100 records and I apply a filter to show only 10 relevant records, I want to be able to select those 10 records individually and export them to Excel.  
asked
3 answers
0

Hi Shreyansh , 

You can push the selected data in Grid in the export entity and pick it up with the associated object which have system.file document as Parent entity . You can further pass the object which is associated with the entity where you stored data in Java actions to download the selected records.

answered
0

Hi ,

 

You can create custom filter. You can check this video.

 

https://www.youtube.com/watch?v=HILFei971Hg

answered
0

Hi Shreyansh,

You have to make custom filter then you will be able to export your filter data.

Try this 

 

https://medium.com/mendix/create-your-own-way-of-filter-by-npe-non-persistant-entity-and-microflow-4ffd11e52fb0

answered