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
125
Hide Hirarchial Structure for Child
posted

Hai All,

I binded the Grid with customer with order details.I was binding using entity.It shows like,

Customers(Header)

     -Customer1

         (+)OrderDetails

                    -Order1

                    -Order2

     -Customer2 

          (+)OrderDetails

                    -Order1

                    -Order2

 

In here i dont need to show those orderdetails(+)(that hirarchial structure only).i just want to show customers with order details.

Customers(Header)

    -Customer1

          -Order1

          -Order2 

    -Customer1

          -Order3

          -Order4    

like this,

 

How can i do this?  

Parents
No Data
Reply
  • 6867
    posted

    As far as I know, you cannot have the grid "skip" a level of the data hierarchy.  You'll need to create an adapter class that re-shapes the data into the hierarchy that you wish to display.

Children