hello all ,
i've this piece of code :
i want to access the DataList : "PartnerDL" from itemDataBound event ..
How can i achieve that ???
Thanks in advance ...
i've this piece of code :
<telerik:RadPanelBar runat="server" ID="RewardsPB" Width="900px" OnItemDataBound="RewardsPB_ItemDataBound" AppendDataBoundItems="false" OnItemCreated="RewardsPB_ItemCreated" OnClientItemClicked="stopPropagation"> <Items> <telerik:RadPanelItem > <HeaderTemplate> <asp:DataList runat="server" ID="PartnerDL" RepeatColumns="4"> <ItemTemplate> <asp:Label ID="Label1" runat="server" Text='<%# Eval("STORE_NAME") %>'></asp:Label> <asp:LinkButton runat="server" ID="Img"><img src='<%# "/images/products/prod_" + Eval("STORE_ID")+".png"%>' width="75px" height="75px"/></asp:LinkButton> </ItemTemplate> </asp:DataList> </HeaderTemplate> </telerik:RadPanelItem> </Items> </telerik:RadPanelBar>i want to access the DataList : "PartnerDL" from itemDataBound event ..
How can i achieve that ???
Thanks in advance ...