Render data as html
No edit summary
No edit summary
Line 8: Line 8:


Must inject service $sce. $sce is a service that provides Strict Contextual Escaping services to AngularJS.
Must inject service $sce. $sce is a service that provides Strict Contextual Escaping services to AngularJS.
We must also use a filter to say that data is trusted as html:
.filter('rawHtml', ['$sce', function($sce)
  return function(val) {    return $sce.trustAsHtml(val);  };
}]);

Revision as of 08:44, 30 September 2018

If your data contains html markup and you want the browser to render the html go like this:

Column: IsStatic = True , TaggedValue DataIsHtml=True

In Razor the implementation use

Html.Raw(<normal bind>)

In AngularJS it is more complex due to security concerns:

Must inject service $sce. $sce is a service that provides Strict Contextual Escaping services to AngularJS.

We must also use a filter to say that data is trusted as html:

.filter('rawHtml', ['$sce', function($sce)
{  
  return function(val) {    return $sce.trustAsHtml(val);  }; 
}]);
This page was edited 96 days ago on 02/10/2024. What links here