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?
Hi,
I have a master page with Rad Tree View. I also got few chid pages. I use previous page properties for my methods.
All tree nodes are bounded to child web pages. when a Tree node is selected related child web page is populated on the main container. All child pages are used a common toolbar on the Master Page. when user select a row of the Radgrid (in the child page) and click edit button it will open edit web page with selected row data. (see images)
I want to save state(seleted values) of all the controls in a web page when user navigate back and forth using browser back button and postbacks to same page.
Could you please let me know which methods I can use in order to accomplish my requirement? I am really appreciated if you can help me solve my issues.
Pri