I am showing few fields from the DSE in a grid and i set a advanced search to filter from the result shown in the grid , now after i set the filter i have to click on the export to excel and it should generate the excel document . the export should have only the fields that i show in the grid and not all the DSE, i have the filtered result to pass , but the function we have support only to export from DSE and not the custom. i tried with PM . but it get stored in Appian folder which does not suffice . can any one suggest how we can export the custom grid with the filtered list as export to excel or csv . Thanks
Discussion posts and replies are publicly visible
Apply the same filter object used by the grid to the export smart service’s Filters input, and use Selection to list only the columns shown in the grid. Export matches the filtered grid.
Thanks Shubam , Ya but that filtered data is not from database its in UI now, we have made the DB call, got the data and then we store it in filtered list . now its in Memory .i don't think we can pass the filtered list to function to work . correct me if i am wrong .
You can try to, Store the filter values in a pv!, then rebuild them in the format required by the smart service, like a list of a!queryFilter() or a!querySelection(), and pass that to Filters.