Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
320
Hierarchical Grid with List ASP MVC Helper
posted

Hello, I am using ASP NET MVC 5 with IgniteUI 2016.2.

I have list of list my data return from database.

List<ClassData> MyClass;

class ClassData{

  // other prop

  List<Detail> Detail;

}

Class Detail{

  //other prop

I tried to send all data direct to View with GridModel. The value is my List of list I mentioned above and try to render it with ASP Razor Helper but no luck. Then I read example from IgniteUI for ASP, and it use Datatable to achieve hierarchical grid.

How can I make hierarchical grid without using datatable? I prefer to just send my data to View, and render all column setting in View with Razor.

Parents Reply Children
No Data