or
<telerik:RadGrid ID="radGridSummary" runat="server" AutoGenerateColumns="false" BorderColor="Gray" BorderStyle="Solid" BorderWidth="1" Width="587px" CellPadding="0" GridLines="Both" Font-Size="11px" OnItemDataBound="radGridSummary_ItemDataBound" OnItemCommand="radGridSummary_ItemCommand"> <HeaderStyle Font-Bold="true" ForeColor="#031d5b" VerticalAlign="Middle" Height="20" CssClass="pointerOnly headerGridRB" /> <ItemStyle CssClass="radGridItem" /> <AlternatingItemStyle CssClass="radGridAltItem" /> <ClientSettings EnablePostBackOnRowClick="true" EnableRowHoverStyle="true" Scrolling-UseStaticHeaders="true" Scrolling-AllowScroll="true" Scrolling-ScrollHeight="200px" /> <MasterTableView BorderWidth="0" DataKeyNames="TaskID, TaskLevel, TaskActivity"> <Columns> <telerik:GridBoundColumn DataField="TaskDescription" HeaderText="Description" SortExpression="TaskDescription"> <HeaderStyle HorizontalAlign="Left" /> <ItemStyle HorizontalAlign="Left" /> </telerik:GridBoundColumn> <telerik:GridTemplateColumn HeaderText="Level"> <HeaderStyle HorizontalAlign="Center" Width="70px" /> <ItemStyle HorizontalAlign="Center" /> <ItemTemplate> <%-- Note: This needs to remain as a Label, as it's accessed by code in 'IndicateRowDeletion' --%> <asp:Label ID="labelLevelName" runat="server" Text='<%# GetLevelDescription(Convert.ToInt32(Eval("TaskLevel"))) %>' /> </ItemTemplate> </telerik:GridTemplateColumn> <telerik:GridBoundColumn DataField="ActivityMajTask" HeaderText="Activity" SortExpression="ActivityMajTask"> <HeaderStyle HorizontalAlign="Center" /> <%-- Note: Removed Width restriction to allow this one to expand as needed --%> <ItemStyle HorizontalAlign="Center" /> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="TaskStdHours" HeaderText="Std Hours" SortExpression="TaskStdHours" DataFormatString="{0:F2}"> <HeaderStyle HorizontalAlign="Center" Width="70px" /> <ItemStyle HorizontalAlign="Right" CssClass="indentRight20" /> </telerik:GridBoundColumn> <telerik:GridTemplateColumn HeaderText="Completed"> <HeaderStyle HorizontalAlign="Center" Width="70px" /> <ItemStyle HorizontalAlign="Center" /> <ItemTemplate> <%-- Note: This needs to remain as a Label, as it's accessed by code in 'IndicateRowDeletion' --%> <asp:Label ID="labelCompleted" runat="server" Text='<%# Convert.ToBoolean(Eval("TaskStatus")) ? "Yes" : "No" %>' /> </ItemTemplate> </telerik:GridTemplateColumn> </Columns> </MasterTableView></telerik:RadGrid><telerik:RadAjaxManagerProxy id="RadAjaxManagerProxy1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="cboPhysMunicipality"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="cboPhysDistrictOffice" LoadingPanelID="RadAjaxLoadingPanel1"/> <telerik:AjaxUpdatedControl ControlID="cboMailStateCountry" LoadingPanelID="RadAjaxLoadingPanel1" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings></telerik:RadAjaxManagerProxy>


I have the following scenario:
1. Insert a table on the page http://demos.telerik.com/aspnet-ajax/editor/examples/default/defaultcs.aspx
2. Apply the “telerik-reTable-2” style from the Table Properties
3. right-mouse-click on any cell of the table and select Insert Row Below (also, it may be above)
Result:
The row has some style, but the style of the table in general becomes different from “telerik-reTable-2” (ActualResult.png attached).
Expected Result:
The table has the style, that was previously selected – “telerik-reTable-2” (ExpectedResult.png attached).

