Is there a list somewhere of what HTML commands work vs don't work in this control for any of the Formatted Text properties.
Example:
The following does not work:
UltraMessageBoxInfo messageInfo = new UltraMessageBoxInfo(); messageInfo.TextFormatted = "<ul><li>List Item 1</li><li>List Item 2</li></ul>"; return igMsgBox.ShowMessageBox(messageInfo);It results in the attached image. Which is not the expected result.
The Formatted Text property full value is:
"<ul><li>List Item 1</li><li>List Item 2</li></ul>" Looks like the forum cut off the end of it.
Hi,
The UltraMessageBox (and several other controls in the suite) use the same custom xml for displaying Formatted Text.
The custom xml we use is similar to, but not quite the same as html.
Anyway, the complete list of supported tags is documented under the FormattedTextEditor and the FormattedLinkLabel controls in the documentation.
Here's a link to the online docs:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2010.3/CLR2.0/html/WinFormattedLinkLabel_Formatting_Text_and_Hyperlinks.html
There is currently no support for Lists like you are attempting to use here.
But please feel free to Submit a feature request to Infragistics.
Thanks for the response mike, I had just assumed that it was using HTML because that is how it looked in the sample in the help. I will look at the link and also submit the feature request.
Thanks,
Adam