- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-31-2017 08:32 AM
The description for the items is appearing in the native page .However,it is not visible in Service Portal.Is it possible to add the description for the included items in service portal
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-31-2017 10:34 PM
In your SC order guide Widget. If you notice line 30. They are taking only short description. You can clone the widget and modify the code as below and that shud work. I changed it to description by adding ng-bind-html tag to add HTML and it works for me
Replace line 30 to below
<div ng-if="item.description" class="m-t" ng-bind-html="item.description"></div>
That should work
Harish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-31-2017 10:34 PM
In your SC order guide Widget. If you notice line 30. They are taking only short description. You can clone the widget and modify the code as below and that shud work. I changed it to description by adding ng-bind-html tag to add HTML and it works for me
Replace line 30 to below
<div ng-if="item.description" class="m-t" ng-bind-html="item.description"></div>
That should work
Harish