I need to access an image control (img1) which nests within a second table in my Radlistview. Is this possible to do via ItemDatabound.
Here is the Radlistview:
<telerik:RadListView ID="radlist1" runat="server" ItemPlaceholderID="ListViewContainer" DataKeyNames="ID">
<LayoutTemplate>
<asp:PlaceHolder runat="server" ID="ListViewContainer"></asp:PlaceHolder>
</LayoutTemplate>
<ItemTemplate>
<fieldset>
<legend><strong><%# Eval("Name")%></strong></legend>
<table >
<tr>
<td>
<table >
<td>
<strong> <%# Eval("Title")%></strong>
</td>
<td valign="top" style="width:52px;" >
<asp:Image ID="img1" runat="server" />
</td>
</table>
</td>
</tr>
<tr>
</tr>
</table>
</fieldset>
</ItemTemplate>
</telerik:RadListView>
Here is the Radlistview:
<telerik:RadListView ID="radlist1" runat="server" ItemPlaceholderID="ListViewContainer" DataKeyNames="ID">
<LayoutTemplate>
<asp:PlaceHolder runat="server" ID="ListViewContainer"></asp:PlaceHolder>
</LayoutTemplate>
<ItemTemplate>
<fieldset>
<legend><strong><%# Eval("Name")%></strong></legend>
<table >
<tr>
<td>
<table >
<td>
<strong> <%# Eval("Title")%></strong>
</td>
<td valign="top" style="width:52px;" >
<asp:Image ID="img1" runat="server" />
</td>
</table>
</td>
</tr>
<tr>
</tr>
</table>
</fieldset>
</ItemTemplate>
</telerik:RadListView>