When a user expand a Parent row then the child rows are displayed. But the child are not aligned with the parent grid columns and also if a user resize the column in the parent grid then child columns should also be resized to match with parent grid column.
Please provide me the better solution for this issue.
Thanks in advance.
<asp:UpdatePanel runat="server" ID="upnlASMTClassAndPropertyUse" UpdateMode="Conditional" ChildrenAsTriggers="false">
<ContentTemplate>
<
telerik:RadGrid ID="grdTest" runat="server" EnableViewState="true" DataSourceID="odsTest" GridLines="Both" BorderWidth="0px" ShowHeader="true" CssClass="GridLayout" OnItemCommand="grdTest_ItemCommand" OnItemDataBound="grdTest_ItemDataBound">
<MasterTableView DataSourceID="odsTest" ShowHeader="true" AutoGenerateColumns="false" >
<Columns>
<telerik:GridButtonColumn Text="Select" UniqueName="lbtnSelect" CommandName="Select" ButtonType="LinkButton" >
</telerik:GridButtonColumn>
....... some columns
</Columns>
</MasterTableView>
</telerik:RadGrid>
</ContentTemplate>
</asp:UpdatePanel>
Similarly three other grids are there
when i tried using the triggers like this:
<Triggers>
<asp:AsyncPostBackTrigger ControlID="lbtnSelect" EventName="Click"/>
</Triggers>
Then, it was giving some error ------ A control with ID 'lbtnSelect' could not be found for the trigger in UpdatePanel
Please guide me how to implement this approach using updatepanel?