I have a problem with GridMvc library. I want to add column which contains joined table of string with
delimiter, here is my code:
columns.Add()
.RenderValueAs(
row => string.Join(
HttpContext.Current.Server.HtmlEncode("<br/>"),
row.QuestionDifficultyToPosition.Select(
r => r.Difficulty.DifficultyName).ToArray()))
.Titled("Difficulties")
.Filterable(true)
.Sortable(true);
but in the result i get:
Easy<br/>Hard
Do you have any ideas why it doesn't work?
tag. That results in the rendering you're seeing. – Mike Cofoed Sep 12 '13 at 20:31