I am trying to bind a grid to this xml
It works apart from the last column and I can't work out how to get it to appear. I suspect it needs a selector but haven't been able to find out how to do it. Here is my ASPX page
<?xml version="1.0" encoding="utf-8"?><Sites> <Site Name="Name" URL="www.google.com" > <KPIData StartDate="2012-04-01"></KPIData> </Site></Sites>It works apart from the last column and I can't work out how to get it to appear. I suspect it needs a selector but haven't been able to find out how to do it. Here is my ASPX page
<Columns> <telerik:GridBoundColumn DataField="Name" FilterControlAltText="Filter Name column" HeaderText="Site Name" SortExpression="Name" UniqueName="Name"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="URL" FilterControlAltText="Filter URL column" HeaderText="URL" SortExpression="URL" UniqueName="URL"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="GATableID" FilterControlAltText="Filter GATableID column" HeaderText="GA Profile Id" SortExpression="GATableID" UniqueName="GATableID"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="/KPIData[@StartDate]" FilterControlAltText="Filter StartDate column" HeaderText="StartDate" SortExpression="StartDate" UniqueName="StartDate"> </telerik:GridBoundColumn> </Columns>