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.
Hi Mike,
I did'nt get it. How would you achive, that the grid will group some columns without displaying cells for those columns which should'nt contain data:
I dont' want to see the 3 columns above the "93". Do you know, what I mean?
sprinter
Thank you very much mike......I will try as you said.......