Previously, I had been inserting HTML into the tree nodes such as
var node = new RadTreeNode();
node.Text = "<b>This is bold text</b>";
When I upgraded to 2012 Q1, it seems that it is now HTML encoding the Text. How can I insert on the server side raw HTML without the control encoding it (similar to how it used to work)?
Thanks!
var node = new RadTreeNode();
node.Text = "<b>This is bold text</b>";
When I upgraded to 2012 Q1, it seems that it is now HTML encoding the Text. How can I insert on the server side raw HTML without the control encoding it (similar to how it used to work)?
Thanks!