Hello:
We have a RadGrid which is populated dynamically, it has 9 columns. The grid is grouped on 1 column using GroupByExpressions/GridGroupByField.
The header of the grid is actually supposed to display that grouped column, plus sum of 2 other columns with that group. Here is the relevant portion of the code:
<GroupByExpressions>
<telerik:GridGroupByExpression>
<SelectFields>
<telerik:GridGroupByField FieldName="GBF" />
<telerik:GridGroupByField FieldName="S1" Aggregate="Sum" HeaderText=".."/>
<telerik:GridGroupByField FieldName="S2" Aggregate="Sum" HeaderText=".." />
</SelectFields>
<GroupByFields>
<telerik:GridGroupByField FieldName="GBF" />
</GroupByFields>
</telerik:GridGroupByExpression>
</GroupByExpressions>
Now the problem is, these grouped columns are not aligned to their respective top-level headers. Everything appears in a single line (in html output, I see colspan=9).
Is there a way to align GroupBy headers to top-level headers and display blanks in other places.
Thanks in advance .. Rohit Dehar