or
<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).


<script type="text/javascript"> var maNV = null; var tenDVI = null; function rowSelected(sender, args) { var MasterTableView = sender.get_masterTableView(); var row = MasterTableView.get_selectedItems()[0]; maNV = MasterTableView.getCellByColumnUniqueName(row, "MA_DV"); tenDVI = MasterTableView.getCellByColumnUniqueName(row, "TEN_DV"); var strMA_CTO = maNV.innerHTML; var strTen_DVi = tenDVI.innerHTML; Service_Test.Web_SELECT_MADVIQLY(strMA_CTO,strTen_DVi); <%Session["CHILD_MADVIQLY"] = "OK";%> } }<div><telerik:RadGrid ID="rgdBieu5" runat="server" GridLines="None" AutoGenerateColumns="False" ShowFooter="true" AllowMultiRowSelection="True" OnItemCommand="rgdBieu5_ItemCommand"> <MasterTableView ClientDataKeyNames="MA_DV" EnableNoRecordsTemplate="true"> <NoRecordsTemplate> Không có dữ liệu </NoRecordsTemplate> <Columns> <telerik:GridBoundColumn HeaderText="Mã đơn vị" DataField="MA_DV" UniqueName="MA_DV" FooterText="Tổng" HeaderStyle-Width="10%"> <HeaderStyle Width="10%" HorizontalAlign="Center" Font-Bold="True"></HeaderStyle> <ItemStyle HorizontalAlign="Center"/> <FooterStyle HorizontalAlign="Center" Font-Bold="true"/> </telerik:GridBoundColumn> <telerik:GridBoundColumn HeaderText="Tên đơn vị" DataField="TEN_DV" UniqueName="TEN_DV" HeaderStyle-Width="20%"> <HeaderStyle Width="20%" HorizontalAlign="Center" Font-Bold="True"></HeaderStyle> <ItemStyle HorizontalAlign="Left" /> </telerik:GridBoundColumn> <telerik:GridBoundColumn HeaderText="3 pha điện tử" DataField="KH_3PD" UniqueName="KH_3PD" DataFormatString="{0:### ### ### ### ### ##0}" Aggregate="Sum" HeaderStyle-Width="10%"> <HeaderStyle Width="10%" HorizontalAlign="Center" Font-Bold="True"></HeaderStyle> <ItemStyle HorizontalAlign="Right"/> <FooterStyle HorizontalAlign="Right" Font-Bold="true" /> </telerik:GridBoundColumn> </Columns> </MasterTableView> <ClientSettings AllowColumnsReorder="false" ReorderColumnsOnClient="true" EnableRowHoverStyle="true" EnablePostBackOnRowClick="false"> <Selecting AllowRowSelect="true" /> <Scrolling AllowScroll="false" UseStaticHeaders="true" /> <ClientEvents OnRowSelected="rowSelected"/> </ClientSettings> </telerik:RadGrid></div>