HA
haneefm
Syncfusion Team
October 19, 2007 06:42 PM UTC
Hi Iliya,
We do not have direct support for binding the XML document to GroupingGrid. So, You need to create the dataset from your xml document and bind this dataset to the GroupingGrid. Below are the codes:
DataSet ds = new DataSet();
ds.ReadXml("DocName.xml");
this.m_grid.DataSource = ds.Tables[0] ;
Best regards,
Haneef