'm doing some testing with panelbar and I find this problem.
I have a panelbar "deputy code", like this example
http://demos.telerik.com/aspnet/prometheus/Panelbar/Examples/ApplicationScenarios/AccessingNestedControls/DefaultVB.aspx
where the first page I have to validate a code into a textbox, and verify that the information typed in there is true, otherwise we can show an error report on a label.
as I do, to the extent possible without a postback but using ajax on the same page.
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server">
<telerik:RadPanelBar runat="server" ID="RadPanelBar1" Skin="Outlook"
ExpandMode="SingleExpandedItem" Width="500px">
<Items>
<telerik:RadPanelItem Expanded="True" Text="Paso 1: Codigo de Seguridaed" runat="server" Selected="true">
<Items>
<telerik:RadPanelItem Value="Codigo_Seguridad" runat="server">
<ItemTemplate>
<div style="background-color: #D8E8FF">
<ul class="formList" id="accountInfo">
<li>
<asp:Label runat="server" AssociatedControlID="txt_codseguridad" CssClass = "labels" ID="nameLabel" >Codigo de Seguridad:</asp:Label>
<asp:TextBox ID="txt_codseguridad" CssClass="textInput" runat="server" ValidationGroup="Codigoseguridad" Width="200px" AutoCompleteType="None">
</asp:TextBox>
<asp:RequiredFieldValidator runat="server" ID="accountValidator" ValidationGroup="Codigoseguridad"
ControlToValidate="txt_codseguridad" ErrorMessage="Codigo de Seguridad Requerido" Text="*"></asp:RequiredFieldValidator>
</li>
<li>
<br />
<asp:Label runat="server" Visible="false" CssClass = "labels_error" ID="lbl_Error" Text="" >
</asp:Label>
</li>
</ul>
<asp:Button runat="server" ID="nextButton" OnClick="validarcodigo_Click" Text="Siguiente" CssClass="nextButton" ValidationGroup="Codigoseguridad" />
<br />
</div>
</ItemTemplate>
</telerik:RadPanelItem>
</Items>
</telerik:RadPanelItem>
</ItemTemplate>
</telerik:RadPanelItem>
</Items>
</telerik:RadPanelItem>
</Items>
<CollapseAnimation Duration="100" Type="None" />
<ExpandAnimation Duration="100" Type="None" />
</telerik:RadPanelBar>
thanks
Alex