Workspace related lists - edit columns not applying changes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-18-2023 03:38 AM
In Some application workspace view in related lists on a record, users are not able to personalize columns. This issue affects all related lists on all records which have them - e.g. Task, Appointment, Request. Same issue does not occur in backend view. As workspace is primary view for DTAC engineering operation, many users are not able to adjust the related list view as per business need.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-18-2023 06:23 AM
Hi @viknesh3 can you please share some screenshots for the configuration on the form at Native UI and Workspace UI
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-14-2023 11:42 PM
Hi, we are facing the same issues, did you find a fix for this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-10-2024 01:27 AM
Hi @viknesh3 ,
Here's how I managed to do it. Go to Record page in your Workspace app and search for list Related component. On the right side on Config TAB search for "Columns" input (it will be empty). Change this input to script and write this:
// since related list is in repeater all the necessary data are in api.item.value path
const table = api.item.value.table;
return table === 'your related table' ? 'here add comma separated system filed names, example (number,status)' : '';
Please mark helpful if that worked for you.
Thanks