hi i am using linq to sql. i am executing stored procedure and the results is of ISingleResult<> .
i want to bind the results to ultra grid and to define bands. for example -> column 0 will be defined as the band 0 column, column 3 will be defined as the band 1 column etc' how can i do this?
in other words, i have flat datasource and i want to bind it to ultra grid and define which column will be in band 0, which column will be band 1 etc'
thanks, Michal
Hi Michal,
The grid's data structure comes from the data source you give it. You cannot move a column in the grid to a new band. If you want a column to show up in a particular band, then you have to set up your data source that way.
acctually i found how to do it. i dont want/ nned to change the data source. all i want is to display the flat datasource in hierarchical way - meaning i can change the display layout.
i used the sorted column function. this function input also include group by as bool variable - i set it to true and got what i wanted