Hello All, I have an application which has a telerik rad Grid and a Telerik Rad Tab Strip.I want that when the user clicks on any of the row in the Grid all the details of that person must be populated in the Tab Strip.For this I have written a rowclicked event of jquery in the script section, There is a Telerik template field and in that I am having a asp:label now I want the text of the label.I have binded the userId to the label.
here is my code: <telerik:GridTemplateColumn > <ItemTemplate > <asp:Label ID="lblProdId" runat ="server" Visible ="true" Text ='<%# Eval("UsertID") %>' ></asp:Label> </ItemTemplate> </telerik:GridTemplateColumn> Jquery function function rowClicked(sender, args) { var selectedPage = $find ("RadMultiPage1").get_selectedPageView().get_element() var inputs = $(selectedPage).find('input'); var grid = $find("RadGrid1") $('#<%=RadGrid1.ClientID %>').find("input:label").map (function() { return alert ( $(this).text ()); //////////////////this line is giving me nothing means blank,but there is a value and also text }).get(); } Please help me Riti