I've read this: http://www.telerik.com/help/aspnet-ajax/grdhierarchicaldatabindingusingdetailtabledatabind.html
as well as other articles and posts, but haven't seen an example of this. I know that it works for a grid with no heirarchy.
Can I use a data table as the datasource for a detailtable?
E.g. under DetailTableDataBind
as well as other articles and posts, but haven't seen an example of this. I know that it works for a grid with no heirarchy.
Can I use a data table as the datasource for a detailtable?
E.g. under DetailTableDataBind
Dim
myDataTable As DataTable = New DataTable()
Dim
dc1 As New DataColumn
dc1.columnname= "xyz"
Dim
row1 As DataRow
row1 = myDataTable.NewRow
row1(0) =
"Testing"
myDataTable.Rows.Add(row1)
e.DetailTableView.DataSource = myDataTableUnderReview