How to edit list view on portal

dimple adlakha
Tera Contributor

I have a CSM related portal page and there i have some list view i want to add the field in list view of portal and also wrap one field on portal list view how to do that

1 ACCEPTED SOLUTION

@dimple adlakha Tried and tested solution

Do  "CTRL + Right" click on list and click on "Instance  in page editor" as shown in image below

jaheerhattiwale_0-1673016139484.png

Add css in the opened page

jaheerhattiwale_1-1673016178514.png

 

CSS:

td{
word-break: break-all;
}

 

Result:

jaheerhattiwale_2-1673016205142.png

 

 

Please mark as correct answer if this solves your issue.

 

 

Please mark the answer as correct or helpful based on impact
ServiceNow Community Rising Star, Class of 2023

View solution in original post

39 REPLIES 39

jaheerhattiwale
Mega Sage
Mega Sage

@dimple adlakha You need to clone the data table widget used to display the list view. Then you can do the modifications you want.

Please mark the answer as correct or helpful based on impact
ServiceNow Community Rising Star, Class of 2023

Could you please explain What is the reason of clone the widget  and is there any impact on exsisting things

, all is developed just to edit the list view on portal for csm 

@dimple adlakha The OOTB widget will not allow you to edit it. And there is no configuration we can do to achieve what you need.

 

No impact on anything.

 

But on whichever page you need the updates made you just need to change the OOTB table to cloned table.

 

Please mark as helpful or correct based on impact

Please mark the answer as correct or helpful based on impact
ServiceNow Community Rising Star, Class of 2023

I dont think its a OOB widget on portal please see the above images which i attached , I have tried in PDI to do the changes in list via view its works  but not in my case .   @jaheerhattiwale