This is a migrated thread and some comments may be shown as answers.

RadPanelBar Problem

2 Answers 90 Views
PanelBar
This is a migrated thread and some comments may be shown as answers.
Carlos Andres
Top achievements
Rank 1
Carlos Andres asked on 23 Jun 2009, 03:17 AM
Hi! I'm new in this Telerik subject items, I have Created a RadPanelBar using the example in this link http://demos.telerik.com/aspnet-ajax/panelbar/examples/applicationscenarios/accessingnestedcontrols/defaultcs.aspx  but with the diference that in the first tab I put 4 comboBoxes , all of then are with the "EnabledOnLoad=true" "OnItemsRequested" event, but when I debug the application the following tab show me the comboboxes but I can not expand any of then it seems that no respond it just freeze, my questions is.. if there is limit on the items that can be load with this event. I'm doing something wrong..? Please help me..

thank You in Advance!!

<

 

telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server">

 

 

<telerik:RadPanelBar runat="server" ID="RadPanelBar1" ExpandMode="SingleExpandedItem"

 

 

Width="600px">

 

 

<Items>

 

 

<telerik:RadPanelItem Expanded="True" Text="Step 1: Basic Case Information" Font-Bold="true"

 

 

runat="server" Selected="true">

 

 

<Items>

 

 

<telerik:RadPanelItem Value="AccountInformation" runat="server">

 

 

<ItemTemplate>

 

 

<div runat="server" style="background-color: #D3DEEF">

 

 

<table runat="server">

 

 

<tr>

 

 

<td>

 

 

<ul style="text-align: justify; list-style-type: none">

 

 

<il>

 

 

<br />

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label ID="casenumberlabel" runat="server" Font-Bold="True" Text=" Case Number:"></asp:Label>

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label ID="numberlabel" runat="server" Font-Bold="True" Text="Label"></asp:Label>

 

 

</il>

 

 

</ul>

 

 

</td>

 

 

</tr>

 

 

<tr>

 

 

<td>

 

 

<ul style="text-align: justify; list-style-type: none">

 

 

<li class="li">

 

 

<br />

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label ID="userlabel" runat="server" Font-Bold="True" Text="User: "></asp:Label>

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label ID="userlabelfin" runat="server" Font-Bold="True" Text="Label"></asp:Label>

 

 

</li>

 

 

</ul>

 

 

</td>

 

 

<td>

 

 

<ul style="text-align: justify; list-style-type: none">

 

 

<li class="li">

 

 

<br />

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:CheckBox ID="otherusercheckbox" Checked="false" AutoPostBack="true" OnCheckedChanged="dispatchedcheck_CheckedChanged"

 

 

runat="server" Font-Bold="True" Text="Other User" />

 

 

<telerik:RadComboBox ID="otherusercombo" Enabled="false" Font-Bold="true" runat="server"

 

 

Height="16px" EmptyMessage="--Choose a User--" Width="125px">

 

 

</telerik:RadComboBox>

 

 

<asp:RequiredFieldValidator Enabled ="false" runat="server" ID="RequiredFieldValidator1" ControlToValidate="otherusercombo" ErrorMessage="!"></asp:RequiredFieldValidator>

 

 

</li>

 

 

</ul>

 

 

</td>

 

 

</tr>

 

 

<tr>

 

 

<td>

 

 

<ul style="text-align: justify; list-style-type: none">

 

 

<li class="li">

 

 

<br />

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label ID="Receptionlabel" runat="server" Font-Bold="True" Text="Reception Date:"></asp:Label>

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;</span>

 

 

<telerik:RadDatePicker ID="receptiondate" runat="server">

 

 

</telerik:RadDatePicker>

 

 

</li>

 

 

</ul>

 

 

</td>

 

 

<td>

 

 

<ul style="text-align: justify; list-style-type: none">

 

 

<li class="li">

 

 

<br />

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label ID="customerlabel" runat="server" Font-Bold="True" Text="Customer:"></asp:Label>

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<telerik:RadComboBox ID="Customercombo" Font-Bold="true" OnItemsRequested="LoadCustomer" EnableLoadOnDemand="true" runat="server" EmptyMessage="--Choose a Customer--">

 

 

</telerik:RadComboBox>

 

 

<asp:RequiredFieldValidator runat="server" ID="RequiredFieldValidator2" ControlToValidate="Customercombo" ErrorMessage="!"></asp:RequiredFieldValidator>

 

 

</li>

 

 

</ul>

 

 

</td>

 

 

</tr>

 

 

<tr>

 

 

<td>

 

 

<ul style="text-align: justify; list-style-type: none">

 

 

<li>

 

 

<br />

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label ID="datelabel" runat="server" Font-Bold="True" Text="Date:"></asp:Label>

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<telerik:RadDatePicker ID="ActualDate" runat="server">

 

 

</telerik:RadDatePicker>

 

 

</li>

 

 

</ul>

 

 

</td>

 

 

<td>

 

 

<ul style="text-align: justify; list-style-type: none">

 

 

<li class="li">

 

 

<br />

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label ID="senderlabel" runat="server" Font-Bold="True" Text="Sender:"></asp:Label>

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<telerik:RadComboBox ID="sendercombo" Font-Bold="true" runat="server" OnItemsRequested="LoadSender" EnableLoadOnDemand="true" EmptyMessage="--Choose a Sender--">

 

 

</telerik:RadComboBox>

 

 

<asp:RequiredFieldValidator runat="server" ID="RequiredFieldValidator3" ControlToValidate="sendercombo" ErrorMessage="!" ></asp:RequiredFieldValidator>

 

 

</li>

 

 

</ul>

 

 

</td>

 

 

</tr>

 

 

<tr>

 

 

<td>

 

 

<ul style="text-align: justify; list-style-type: none">

 

 

<li class="li"><span lang="es-co">&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label ID="Label9" runat="server" Font-Bold="True" Text="Type Of Contact:"></asp:Label>

 

 

<span lang="es-co">&nbsp;&nbsp;</span>

 

 

<telerik:RadComboBox ID="typecombo" Font-Bold="true" Width="115px" runat="server" OnItemsRequested="LoadType" EnableLoadOnDemand="true"

 

 

EmptyMessage="--Choose a Type--">

 

 

</telerik:RadComboBox>

 

 

<asp:RequiredFieldValidator runat="server" ID="RequiredFieldValidator4" ControlToValidate="typecombo" ErrorMessage="!" ></asp:RequiredFieldValidator>

 

 

<br />

 

 

</li>

 

 

</ul>

 

 

</td>

 

 

<td>

 

 

<br />

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Button runat="server" ID="nextButton" OnClick="nextButton_Click" Text="Next" />

 

 

<br />

 

 

<br />

 

 

</td>

 

 

</tr>

 

 

</table>

 

 

</div>

 

 

</ItemTemplate>

 

 

</telerik:RadPanelItem>

 

 

</Items>

 

 

</telerik:RadPanelItem>

 

 

<telerik:RadPanelItem Enabled="False" Text="Step 2: Case Detail Information" Font-Bold="true"

 

 

runat="server">

 

 

<Items>

 

 

<telerik:RadPanelItem Value="DeatilCase" runat="server">

 

 

<ItemTemplate>

 

 

<div style="background-color: #D3DEEF">

 

 

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

 

 

<asp:Label ID="Observationslabel" runat="server" Text="Observations" Font-Bold="true"></asp:Label>

 

 

<table id="Table1" runat="server">

 

 

<tr>

 

 

<td>

 

 

<ul style="text-align: justify; list-style-type: none">

 

 

<li><span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label ID="ProductLabel" Text="Product: " runat="server" Font-Bold="true"></asp:Label>

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<telerik:RadComboBox ID="ProductCombo" Font-Bold="true" Width="130px" runat="server"

 

 

EmptyMessage="--Choose a Product--">

 

 

</telerik:RadComboBox>

 

 

<asp:RequiredFieldValidator runat="server" ID="RequiredFieldValidator4" ControlToValidate="ProductCombo" ErrorMessage="!" ></asp:RequiredFieldValidator>

 

 

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

 

 

</li>

 

 

</td>

 

 

<td>

 

 

<telerik:RadTextBox ID="observationstextbox" EmptyMessage="Enter your Comments" TextMode="MultiLine" runat="server"

 

 

Font-Bold="true" Width="200px" Height="100">

 

 

</telerik:RadTextBox>

 

 

</td>

 

 

</tr>

 

 

<tr>

 

 

<td>

 

 

<ul style="text-align: justify; list-style-type: none">

 

 

<il>

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label ID="reasoncontactlabel" runat="server" Text="Reason for Contact:" Font-Bold="true"></asp:Label>

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<telerik:RadComboBox ID="reasoncombo" runat="server" Font-Bold="true" Width="150px" EmptyMessage="--Choose a Reason--">

 

 

</telerik:RadComboBox>

 

 

<asp:RequiredFieldValidator runat="server" ID="RequiredFieldValidator5" ControlToValidate="reasoncombo" ErrorMessage="!" ></asp:RequiredFieldValidator>

 

 

</il>

 

 

</ul>

 

 

</td>

 

 

<td style="vertical-align: bottom">

 

 

<asp:Label ID="descriptionlabel" runat="server" Font-Bold="true" Text="Description"></asp:Label>

 

 

</td>

 

 

</tr>

 

 

<tr>

 

 

<td>

 

 

<ul style="text-align: justify; list-style-type: none">

 

 

<il>

 

 

<br />

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label ID="detail2label" runat="server" Text="Detail 1: " Font-Bold="true"></asp:Label>

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<telerik:RadComboBox ID="detail2combo" runat="server" Font-Bold="true" Width="150px" EmptyMessage="--Choose a Detail--">

 

 

</telerik:RadComboBox >

 

 

<asp:RequiredFieldValidator runat="server" ID="RequiredFieldValidator6" ControlToValidate="detail2combo" ErrorMessage="!" ></asp:RequiredFieldValidator>

 

 

</il>

 

 

</ul>

 

 

</td>

 

 

<td>

 

 

<asp:TextBox ID="TextBox1" runat="server" TextMode="MultiLine" Height="70px" Width="200px"></asp:TextBox>

 

 

</td>

 

 

</tr>

 

 

<tr>

 

 

<td>

 

 

<ul style="text-align: justify; list-style-type: none">

 

 

<il>

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label ID="detail3Label" runat="server" Text="Detail 2: " Font-Bold="true"></asp:Label>

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<telerik:RadComboBox ID="detail3combo" runat="server" Font-Bold="true" Width="150px" EmptyMessage="--Choose a Detail--">

 

 

</telerik:RadComboBox>

 

 

<asp:RequiredFieldValidator runat="server" ID="RequiredFieldValidator7" ControlToValidate="detail3combo" ErrorMessage="!" ></asp:RequiredFieldValidator>

 

 

</il>

 

 

</ul>

 

 

</td>

 

 

</tr>

 

 

<tr>

 

 

<td colspan="2" valign="bottom">

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><asp:Label

 

 

ID="Label1" runat="server" Font-Bold="True" Text="Solution"></asp:Label>

 

 

</td>

 

 

</tr>

 

 

<tr>

 

 

<td colspan="2" valign="middle">

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>

 

 

<telerik:RadTextBox ID="Solutiontext" runat="server" EmptyMessage="Enter your Solution" Height="80px" TextMode="MultiLine"

 

 

Width="300px">

 

 

</telerik:RadTextBox>

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

 

 

</span>

 

 

<asp:Button runat="server" ID="nextButton1" OnClick="nextButton_Click" Text="Next" />

 

 

<br />

 

 

<br />

 

 

</td>

 

 

</tr>

 

 

</table>

 

 

</div>

 

 

</ItemTemplate>

 

 

</telerik:RadPanelItem>

 

 

</Items>

 

 

</telerik:RadPanelItem>

 

 

<telerik:RadPanelItem Enabled="False" Text="Step 3: Contact Detail Information" Font-Bold="true"

 

 

runat="server">

 

 

<Items>

 

 

<telerik:RadPanelItem Value="DeatilCase1" runat="server">

 

 

<ItemTemplate>

 

 

<div style="background-color: #D3DEEF">

 

 

<table runat="server">

 

 

<tr>

 

 

<td>

 

 

<br />

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label ID="emaillabel" runat="server" Text="Email" Font-Bold="true"></asp:Label>

 

 

</td>

 

 

<td>

 

 

<br />

 

 

<telerik:RadNumericTextBox ID="emailnumeric" runat="server" Width="50px">

 

 

</telerik:RadNumericTextBox>

 

 

</td>

 

 

<td>

 

 

<br />

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label ID="phonelabel" runat="server" Font-Bold="true" Text="Phone"></asp:Label>

 

 

</td>

 

 

<td>

 

 

<br />

 

 

<telerik:RadNumericTextBox ID="phonenumeric" runat="server" Width="50px">

 

 

</telerik:RadNumericTextBox>

 

 

</td>

 

 

<td>

 

 

<br />

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:CheckBox ID="dispatchedcheck" runat="server" Font-Bold="true" Text="Dispatched"

 

 

Checked="true" />

 

 

</td>

 

 

</tr>

 

 

<tr>

 

 

<td>

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label runat="server" ID="MSNlabel" Font-Bold="true" Text="MSN"></asp:Label>

 

 

</td>

 

 

<td>

 

 

<telerik:RadNumericTextBox ID="msnnumeric" runat="server" Width="50px">

 

 

</telerik:RadNumericTextBox>

 

 

</td>

 

 

<td>

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label runat="server" Font-Bold="true" Text="CellPhone" ID="celllabel"></asp:Label>

 

 

</td>

 

 

<td>

 

 

<telerik:RadNumericTextBox ID="cellnumeric" runat="server" Width="50px">

 

 

</telerik:RadNumericTextBox>

 

 

</td>

 

 

<td>

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Label ID="severitylabel" runat="server" Text="Severity" Font-Bold="true"></asp:Label>

 

 

</td>

 

 

<td>

 

 

<br />

 

 

<telerik:RadComboBox ID="severitycombo" runat="server" Width="180px" EmptyMessage="--Choose a Severity--">

 

 

</telerik:RadComboBox>

 

 

<asp:RequiredFieldValidator runat="server" ID="RequiredFieldValidator7" ControlToValidate="severitycombo" ErrorMessage="!" ></asp:RequiredFieldValidator>

 

 

<br />

 

 

<br />

 

 

</td>

 

 

</tr>

 

 

</table>

 

 

<table>

 

 

<tr>

 

 

<td valign="top">

 

 

<span lang="es-co">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>

 

 

<asp:Button ID="saveButton" runat="server" Text="Register Case" />

 

 

</td>

 

 

</tr>

 

 

</table>

 

 

</div>

 

 

</ItemTemplate>

 

 

</telerik:RadPanelItem>

 

 

</Items>

 

 

</telerik:RadPanelItem>

 

 

</Items>

 

 

<CollapseAnimation Duration="1000" Type="Linear" />

 

 

<ExpandAnimation Duration="1000" Type="Linear" />

 

 

</telerik:RadPanelBar>

 

 

</telerik:RadAjaxPanel>

 






2 Answers, 1 is accepted

Sort by
0
Carlos Andres
Top achievements
Rank 1
answered on 23 Jun 2009, 12:38 PM
I would also like to add that with the first three controls it works, but when using the four one..all of them stop workin.
0
Paul
Telerik team
answered on 23 Jun 2009, 01:31 PM
Hi Carlos,

I think it will be best if you can open a support ticket and send us a simple running project (incl. your custom skin, CSS, images, DB backup if needed and so on) demonstrating the problem (and step-by-step instructions on doing so). In that way we can reproduce and pinpoint the problems you're facing on our side, understand the logic of your application and provide a solution.

Thanks beforehand for your patience and cooperation,
Paul
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
PanelBar
Asked by
Carlos Andres
Top achievements
Rank 1
Answers by
Carlos Andres
Top achievements
Rank 1
Paul
Telerik team
Share this question
or