Hi,
How can I set the XML Data Source to RadGridView ? My XML is created dynamically so the number of columns may change each time.
Suppose if my XML has below format, how can I show it in Grid using XMLDataSource.
<DataSet>
<Records>
<ColumnA>Orange<ColumnA>
<ColumnB>Apple<ColumnB>
<ColumnC>Grapes<ColumnC>
<Records>
<Records>
<ColumnA>Banana<ColumnA>
<ColumnB>Carrrot<ColumnB>
<ColumnC>Onion<ColumnC>
<Records>
<DataSet>
So this will be a 2 row 3 column grid. I have to show this in XAML only. Any Idea ? Demo is not working in my browser.
Thanks in advance,