I have a such xml:
<?xml version="1.0" encoding="utf-8" ?>
<root>
<item>
<title>Title 1</title>
<description>
<strong><i>Description in HTML<i></strong>
</description>
</item>
<item>
<title>Title 2</title>
<description>
<ol><li><strong>Item1</strong></li><li><i>Item2</i></li></ol>
</description>
</item>
</root>
The repost is been generated like this (using XtraReports from DevExpress)
public ReportProcess()
{
DataSet xmlDataSet = new DataSet();
xmlDataSet.ReadXml(@"C:\MySolution\example.xml");
DataSource = xmlDataSet;
InitializeComponent();
xrLabel1.DataBindings.Add("Text", DataSource, "item.title", "Title: {0}");
xrRichText1.DataBindings.Add("Html", DataSource, "item.description", "{0}");
}
Problem is the the controller xrRichText1 is empty. If I put clean text (not html) to description tag it will appear.
Why?