I have a drop down list inside of an ItemTemplate. However, I'm unable to access the drop down list from the server side code. I wanted to catch the postback of the item and handle it server side as well. Is there something special I need to do to access this, or will I need to go through and find the control and add a handler to it.
Here is my ItemTemplate:
Here is my ItemTemplate:
| <telerik:RadToolBarButton> |
| <ItemTemplate> |
| <asp:DropDownList ID="ddlCulture" runat="server"> |
| </asp:DropDownList> |
| </ItemTemplate> |
| </telerik:RadToolBarButton> |