<
telerik:RadEditor runat="server" ID="RadEditor1" >
<Content>
<asp:Button ID="btnSubmit2" runat="server" Text="Submit"/>
<table>
<tr>
<td><div id="EditBody1" runat="server" contentEditable="true" unselectable="off">My content area 1</div></td>
</tr>
</table>
</Content>
</telerik:RadEditor>
Thank you
Mike
http://209.242.61.43:1027/rpm/secure/myportal/portal/client/Test2.aspx
Click on the arrow to the left of the first appointment listed (ie: ID: 13 - Verifying Save works ok).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