Encoding
Encoded | Un-encoded |
---|---|
Movie with <b>bold</b> | Movie with bold |
@(await Html
.SimpleGrid(Model.Where(movie => movie.Name.Contains("bold")))
.AddColumn(col => col
.For(movie => movie.Name)
.Header("Encoded")
.Encoded(true)) // default is true
.AddColumn(col => col
.For(movie => movie.Name)
.Header("Un-encoded")
.Encoded(false))
.RenderAsync())