i am new to Telerik, so in lots of trouble.
I need to implement one scneraio using telerik radgrid and update panel. Please guide me on this.
I am having 4 grid on my page. I have kept each of the grid under separate update panel. Each one contains select link button (as GridButtonColumn where i have given the commandName as Select); Now on click of every grid's link button, i have to load other grids which are there in other update panels.
I thought of writing the asynchronous trigger where the control name will be the link button and there is no other condition on which this will be updated. I am doing something in itemCommand event, but when i was running the application, the link button click for the first grid was working for the firt time.. then onwards it was not working. Is there any way i can implement this so that all the grid will not be loaded on selection of row for one of the grids.
its very urgent, so please guide me asap.
<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?