The Zurich release has arrived! Interested in new features and functionalities? Click here for more

Service Portal : How to add the description for the items in Order Guides

jem2
Tera Contributor

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

1 ACCEPTED SOLUTION

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



find_real_file.png


Replace line 30 to below


<div ng-if="item.description" class="m-t" ng-bind-html="item.description"></div>



That should work


Regards
Harish

View solution in original post

5 REPLIES 5

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



find_real_file.png


Replace line 30 to below


<div ng-if="item.description" class="m-t" ng-bind-html="item.description"></div>



That should work


Regards
Harish