This question is locked. New answers and comments are not allowed.
I have a grid set where I am displaying "n" amount of projects for a specific customer.
The YeagerTech.Customer object contains a property called Projects which is of the following type:
ICollection<YeagerTechModel.Project> Customer.Projects
In the collection exist "n' number of projects for a specific customer.
The question is "how do I display the properties in the child grid associated with the Project?
I have the below, but am unsure how to display these Project properties.
The YeagerTech.Customer object contains a property called Projects which is of the following type:
ICollection<YeagerTechModel.Project> Customer.Projects
In the collection exist "n' number of projects for a specific customer.
The question is "how do I display the properties in the child grid associated with the Project?
I have the below, but am unsure how to display these Project properties.
.DetailView(details => details.ClientTemplate(
Html.Telerik().Grid<YeagerTechModel.Customer>()
.Name("Projects_<#= CustomerID #>").Columns(columns =>
{
columns.Bound(o => o.Projects).Width(101);
// How do I display the Project properites here for the detail grid?
})
.ToHtmlString()