Hi,
RadPanelBar is doing something rather odd inside my content page.
RadPanelBar rendering error inside content page.
As can be seen in the image, the RadTextBox isn't having any issues. I also tried placing a RadPanelBar in another content page that holds multiple RadGrids and there too it produces the issue as seen in the image.
Any idea what is going on? The error message makes no sense at all (cannot cast RadPanelItemCollection to RadPanelItemCollection, eh... ok..).
Here's the HTML script of the content page:
As far as I can tell, there are no issues with that HTML.
Thanks,
Mike
RadPanelBar is doing something rather odd inside my content page.
RadPanelBar rendering error inside content page.
As can be seen in the image, the RadTextBox isn't having any issues. I also tried placing a RadPanelBar in another content page that holds multiple RadGrids and there too it produces the issue as seen in the image.
Any idea what is going on? The error message makes no sense at all (cannot cast RadPanelItemCollection to RadPanelItemCollection, eh... ok..).
Here's the HTML script of the content page:
<%@ Page Language="C#" MasterPageFile="~/Intranet/Intranet.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="EnterpriseDemo.Intranet.Default" Title="Enterprise Demo (Intranet)" %> | |
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %> | |
<asp:Content ID="IntranetDefaultContent" ContentPlaceHolderID="IntranetWorkAreaContentPlaceHolder" runat="server"> | |
<asp:LinqDataSource ID="NewsLinqDataSource" runat="server" | |
ContextTypeName="EnterpriseDemo.Intranet.Database.IntranetDataContext" | |
EnableDelete="True" EnableInsert="True" EnableUpdate="True" OrderBy="Date" | |
TableName="News"> | |
</asp:LinqDataSource> | |
<telerik:RadPanelBar ID="IntranetNewsRadPanelBar" Runat="server" Skin="Outlook" Width="100%"> | |
<CollapseAnimation Type="None" Duration="100"></CollapseAnimation> | |
<Items> | |
<telerik:RadPanelItem runat="server" Text="Company News" Selected="True" Expanded="True"> | |
<Items> | |
<telerik:RadPanelItem runat="server" Text="News Item 1"> | |
</telerik:RadPanelItem> | |
</Items> | |
</telerik:RadPanelItem> | |
<telerik:RadPanelItem runat="server" Text="Department News"> | |
</telerik:RadPanelItem> | |
</Items> | |
<ExpandAnimation Type="None" Duration="100"></ExpandAnimation> | |
</telerik:RadPanelBar> | |
<br /> | |
<telerik:RadTextBox ID="RadTextBox1" Runat="server" Skin="Outlook"> | |
</telerik:RadTextBox> | |
</asp:Content> |
As far as I can tell, there are no issues with that HTML.
Thanks,
Mike