Workspace related lists - edit columns not applying changes

viknesh3
Tera Contributor

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.

3 REPLIES 3

Eswar Chappa
Mega Sage
Mega Sage

Hi @viknesh3 can you please share some screenshots for the configuration on the form at Native UI and Workspace UI

Bex
Tera Contributor

Hi, we are facing the same issues, did you find a fix for this?

IronPotato
Mega Sage

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