I'm working with the RadToolBar, encapsulated within a RadPane, encapsulated within a RadSplitter;
The goal is to programmatically access a RadButton, which is encapsulated within an <ItemTemplate> section of a RadToolBarButton;
The code section is displayed below;
Thanks in advance for any insight;
                                The goal is to programmatically access a RadButton, which is encapsulated within an <ItemTemplate> section of a RadToolBarButton;
The code section is displayed below;
Thanks in advance for any insight;
<telerik:RadSplitter>      <telerik:RadPane ID="RadPane5" Runat="server" Width="100%" BackColor="White" BorderColor="Transparent" BorderWidth="0px" Visible="false" Scrolling="None">        <telerik:RadToolBar ID="RadToolBar3" Runat="server" Height="26px" Width="100%" BackColor="Transparent" BorderColor="Transparent" Visible="false" onbuttonclick="RadToolBar3_ButtonClick">                     <Items>                           <telerik:RadToolBarButton runat="server" Value="TemplateTextBox" CommandName="rcbCustomers" >                                <ItemTemplate>                                   <asp:Label Text="Customer" runat="server" ></asp:Label>                                 <telerik:RadComboBox ID="rcbCustomer" runat="server" Text="Customers"></telerik:RadComboBox>                                 <asp:Label ID="Group" Text="Group" runat="server" ></asp:Label>                                 <telerik:RadComboBox ID="rcbGroup" runat="server" Text="Group"></telerik:RadComboBox>                                 <asp:Label ID="Provider" Text="Provider" runat="server" ></asp:Label>                                 <telerik:RadComboBox ID="rcbProvider" runat="server" Text="Provider"></telerik:RadComboBox>                                  <asp:Label ID="Location" Text="Location" runat="server" ></asp:Label>                                 <telerik:RadComboBox ID="rcbLocation" runat="server" Text="Location"></telerik:RadComboBox>                                   <telerik:RadButton ID="rbViewReport" runat="server" Text="View Report" CommandName="View Report"></telerik:RadButton>                              </ItemTemplate>                           </telerik:RadToolBarButton>                           <telerik:RadToolBarButton runat="server">                            </telerik:RadToolBarButton>                      </Items>                   </telerik:RadToolBar>                <rsweb:ReportViewer ID="ReportViewer7" runat="server" Width="100%" PageCountMode="Actual" Visible="false" ></rsweb:ReportViewer>           </telerik:RadPane>   </telerik:RadSplitter>
