in order to avoid this type of problem with special characters in strings,
//client side:
function($scope, $sce) {
/* widget controller */
var c = this;
// Display HTML field
$scope.data.desc = $sce.trustAsHtml($scope.data.desc);
}
All things ServiceNow... take a look at my channel: https://www.youtube.com/@cloudminus89
in order to avoid this type of problem with special characters in strings,
//client side:
function($scope, $sce) {
/* widget controller */
var c = this;
// Display HTML field
$scope.data.desc = $sce.trustAsHtml($scope.data.desc);
}
Comments
Post a Comment