[CLOSED] Accordian Items Scroll Redraw mess

  1. #1

    [CLOSED] Accordian Items Scroll Redraw mess

    I have an accordian on a page:

    <ext:Panel ID="Panel551" runat="server" Height="400" Width="400">
       <Body>
          <ext:Accordion ID="AccordionMainMenu" runat="server"/>
       </Body>
     </ext:Panel>
    That is built in codebehind like:

       Dim mnuItem As Coolite.Ext.Web.MenuItem
        Dim pnl As Coolite.Ext.Web.MenuPanel
    
        For intCount As Integer = 1 To 2
    
          pnl = New Coolite.Ext.Web.MenuPanel
    
          pnl.ID = "Menu" &amp; intCount.ToString
          pnl.Title = "Main Menu" &amp; intCount.ToString
          pnl.Collapsed = False
          pnl.Icon = Icon.Application
          pnl.BodyStyle = "overflow-x:hidden;"
          pnl.AutoScroll = True
    
          For i As Integer = 1 To 100
            mnuItem = New Coolite.Ext.Web.MenuItem
            mnuItem.Text = "Menu" &amp; intCount.ToString &amp; i.ToString
            mnuItem.ID = "Menu" &amp; intCount.ToString &amp; i.ToString
    
            pnl.Menu.Items.Add(mnuItem)
          Next
    
          Me.AccordionMainMenu.Items.Add(pnl)
    
        Next
    Now if I scroll to the bottom of one of the panels the background changes to white and when I mouse over the items they start redrawing funny and jump me back to the top of the accordian.

    Any ideas why this is please? (IE7 on Windows XP with Visual Studio 2008 SP1)

  2. #2

    RE: [CLOSED] Accordian Items Scroll Redraw mess

    Hi,

    FitHeight="false" for MenuPanel
  3. #3

    RE: [CLOSED] Accordian Items Scroll Redraw mess

    Thanks for the fast reply. I had just found that after some searching, I presume it's not in the released version though only in SVN?
  4. #4

    RE: [CLOSED] Accordian Items Scroll Redraw mess

    Ignore that, got it from SVN and all working now. Solved Cheers

Similar Threads

  1. [CLOSED] checkbox layout mess in FieldSet
    By leon_tang in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Sep 19, 2011, 12:41 PM
  2. Mess with an existing application
    By zelegolas in forum 1.x Help
    Replies: 3
    Last Post: May 12, 2009, 3:50 PM
  3. [CLOSED] Accordian KeepActive Property
    By HOWARDJ in forum 1.x Legacy Premium Help
    Replies: 7
    Last Post: Mar 22, 2009, 10:47 PM
  4. [CLOSED] Trying to redraw a portal in an Ajax event...
    By iansriley in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Feb 13, 2009, 10:32 AM
  5. [CLOSED] Redraw a portal from a button click
    By iansriley in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Dec 18, 2008, 11:30 AM

Posting Permissions