Completed
Last Updated: 23 Mar 2016 07:02 by JeffSM
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 03 Mar 2016 07:26
Category: UI Framework
Type: Bug Report
1
FIX. TPF - HTML-like text with image source is not displayed
To reproduce:

string filePath = @"D:\Projects\1015954MenuItemHTML\1015954MenuItemHTML\Resources\calendar.png";
StringBuilder sbItem = new StringBuilder();
sbItem.Append("<html><b>aaa<img src=" + filePath + ">");
sbItem.Append("</html>");

RadMenuItem item = new RadMenuItem();
item.Text = sbItem.ToString();
this.radMenuItem1.Items.Add(item);


Workaround: use resource file: string filePath = @"res:_1015954MenuItemHTML.Resources.calendar.png";
1 comment
JeffSM
Posted on: 03 Mar 2016 14:48
This would be greate.