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
420
Grid like Excel column merge
posted

Hi

 

I am having my data table

 

Project        User         Add          Edit

1                   A                 Yes        No

1                  B                 Yes          Yes

1                  C                Yes          Yes

 

I want the result in grid Like this

                                User A                   User B               

Project                Add         Edit         Add        Edit

1                          Yes          No           Yes         Yes   ......

 

 

How can i achieve this using ultrawinGrid?

Can any one send me a sample?

Thanks

 

 

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

    The grid cannot alter the data structure like this. What you would have to do is create a DataSource that has the data in the structure you want and bind it to the grid. You could, for example, use the UltraDataSource of a BindingList<T> and copy your data from your data table into it.

Children