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
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.