I'm working on a custom usercontrol that nests 2 RadPanelBars - one RadPanelBar inside each of its parent's RadPanelItem - in Sitefinity 3.7.2057.2. The parent RadPanelBar expands/collapses as it should, however the child RadPanelBar doesn't expand or collapse. Can you tell me how to fix it?
This is all that exists in my ascx.
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="RadPa... <telerik:RadPanelBar ID="RadPanelBarParent" runat="server" Skin="Default"> </telerik:RadPanelBar>foreach (Guid id in ListsIds) { //Create new bar RadPanelItem NewItem = new RadPanelItem(manager.GetList(id).Name); RadPanelItem InternalParentItem = new RadPanelItem(); // Create new PanelBar RadPanelBar ChildPanelBar = new RadPanelBar(); //Add to the child NewItem.Items.Add(InternalParentItem); // Add the panelbar to the new item InternalParentItem.Controls.Add(ChildPanelBar); //Add the parent RadPanelBarParent.Items.Add(NewItem); foreach(IListItem listItem in manager.GetListItems(id)){ //Create new bar RadPanelItem ChildItem = new RadPanelItem(listItem.Headline); RadPanelItem InternalChildItem = new RadPanelItem(); // Bind the template InternalChildItem.ItemTemplate = new TextBoxTemplate(); //Add to the child ChildItem.Items.Add(InternalChildItem); // Set the content InternalChildItem.Value = listItem.Content.ToString(); //Add to the parent ChildPanelBar.Items.Add(ChildItem); } }<%@ Page Language="VB" AutoEventWireup="true" CodeFile="ZTest_RadEditor.aspx.vb" Inherits="ZTest_RadEditor" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <link href="THDiStyles/Default.css" rel="stylesheet" type="text/css" /> </head> <body> <form id="form1" runat="server"> <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> </telerik:RadScriptManager> <div> <br /><br /> <telerik:RadEditor ID="RadEditor1" runat="server" EnableEmbeddedSkins="true" Skin="Simple" ToolsFile="BasicTools.xml" > </telerik:RadEditor> <br /><br /> </div> </form> </body> </html> .RadListBox div.rlbGroup{ background-color:#E6E2D7 !important;}this.ucContactEdit1.PopulateControls(); this.RadWindowManager1.Windows[3].VisibleTitlebar = false; this.RadWindowManager1.Windows[3].VisibleStatusbar = false; this.RadWindowManager1.Windows[3].Width = Unit.Pixel(430); this.RadWindowManager1.Windows[3].Height = Unit.Pixel(310); this.RadWindowManager1.Windows[3].OnClientClose = "closeRadWindow"; this.RadWindowManager1.Windows[3].VisibleOnPageLoad = true;<telerik:RadWindowManager runat="server" RestrictionZoneID="offsetElement" KeepInScreenBounds="True" Modal="True" Animation="Fade" ID="RadWindowManager1" EnableShadow="false" ShowOnTopWhenMaximized="false" Width="425" Height="525" DestroyOnClose="True" Behavior="Default" InitialBehavior="None" OnClientClose="OnClientClose"> <Windows> <telerik:RadWindow ID="RadWindowEditor" runat="server" Width="430" Height="310" VisibleStatusbar="False" Modal="True" KeepInScreenBounds="True" Animation="Fade" > <ContentTemplate> <uc7:ucContactEdit ID="ucContactEdit1" runat="server" /> </ContentTemplate> </telerik:RadWindow> </Windows> </telerik:RadWindowManager>

Hello,
Telerik version : 2010.2.826.35
I use a RadFilter with RadGrid and I see just the first column and the last 29 columns of the grid.
I tried with no RadGrid and 32 RadFilterTextFieldEditor. I had the same result.
Just a little remark, there is a problem with css when I use design time. : CssClass="RadFilter RadFilter_Default "
An other question :
How can add RadFilterTextFieldEditor to a RadFilter with a FilterContainerID ?
Anne