- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2022 05:17 AM
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
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2023 06:44 AM
@dimple adlakha Tried and tested solution
Do "CTRL + Right" click on list and click on "Instance in page editor" as shown in image below
Add css in the opened page
CSS:
td{
word-break: break-all;
}
Result:
Please mark as correct answer if this solves your issue.
ServiceNow Community Rising Star, Class of 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 06:21 AM
@dimple adlakha Wrapping happens automatically. please see image
If in you case you need to wrap the text then use below css
td{
word-wrap: break-word;
}
Please mark as correct answer if this solves your issue.
ServiceNow Community Rising Star, Class of 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 06:27 AM
@jaheerhattiwale i want to wrap the field short description
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 06:30 AM
@dimple adlakha Can you please send the screen shot of issue?
ServiceNow Community Rising Star, Class of 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2023 06:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2023 06:44 AM
@dimple adlakha Tried and tested solution
Do "CTRL + Right" click on list and click on "Instance in page editor" as shown in image below
Add css in the opened page
CSS:
td{
word-break: break-all;
}
Result:
Please mark as correct answer if this solves your issue.
ServiceNow Community Rising Star, Class of 2023