Hi Champ,
I am using default export functionality of record in my interface to download data in to a excel. But when it's downloading, it's downloading columns with extra data. For example if I have a column with a text with an icon, then it's downloading text and appening the icon text as well which I don't want in my excel. I want only the text to be downloaded. Moreoever, if I want to download only few columns, then how can I customize that. I know we can build a different download icon link and can do that; but clinet is not preferring that option of custom development again.
Regards,
Ghanashyam
Discussion posts and replies are publicly visible
Hey Hi,
Download only few columns: This is possible in latest release of appian by configuring exportWhen parameter for gridColumn
If the latest version allows using an API to trigger a CSV download:
Use a backend API only use raw data (excluding icons or visual components) to generate CSV
This gives you full control over what's included in the CSV, avoiding unwanted icon labels or extra rendering noise.
Or Keep Icon and raw data in different column by adjusting width and use exportWhen
Thanks