I am using the export button in a record grid field. However, when the Excel file is downloaded, some of the fields have long URL links in parentheses next to them. I am not sure how to get rid of the URL links. I think this is because one of the links is a a!recordLink() component and another link is created through a personalized expression rule. Wanted to see if anyone else had insight about this on getting the link to show as normal rather than a super long URL. I have provided a screenshot of what the Excel file looks like below.
Discussion posts and replies are publicly visible
How you have configured that grid column?
You can pass that generated link from ER in a a!safeLink() and use it an a richTextDisplayField()
a!gridColumn( label: "Test", value: a!richTextDisplayField( value: a!richTextItem( text: "Test", link: a!safeLink(uri: "https://www.youtube.com/") ) ), align: "START", width: "AUTO" )
This is great however we are currently using a!recordLink() for each row in the grid. I'm not sure if a!safeLink() can replicate that.