Hello,
I'm setting up a prototype page, I was wondering if there is an easy way to bind nested details tables using the following data:
var entries = new[]
{
new
{
AgencyName = "Health International",
AgencyAbbreviation = "HI",
AgencyStatus = "Active",
AgencyType = "Service",
Programs = new[]
{
new { ProgramName = "New Beginnings", ProgramAbbreviation = "NB", ProgramStatus = "Active" },
new { ProgramName = "Bright Start", ProgramAbbreviation = "BS", ProgramStatus = "Active" }
}
}
};
Do I have to tap into DetailsTableDataBind?
Thanks.