Hello,
I am attempting to display text in a column of a RadzenDataGridColumn. My incoming text has embedded html formatting, for instance: "How are you today". Here only the word "are" is to bolded.
But the text is showing with the markup, rather than actually bolding the text. Inspecting with Chrome, it appears that when the value in rendered, it is transformed to display the string without formatting (i.e. "<b>are</b>");
I have attempted to use conditional formatting with the Template option on the column, and I can achieve my results with status text but not with the incoming variable data.
I have also tried the CellRender callback but, once again, I don't see how to format individual words but only the cell style attributes. I have used other components, say from DevExpress, that allow you to catch the values post-render but this appears to be for modifying pre-rendered values only.
Any hints on what might work? Thanks in advance.
//Chris