Height of WebPane

2 replies. Last post: November 30, 2011 9:40 AM by Beryl Bucher
Tags :
  • (None)
  • New Discussion
  • New Question
  • New Product Feedback
Beryl BucherMember

I have a WebPaneManager with a height of 506px (I'd rather have 100%, but apparently I can't get that to work at all).  I use a master page with the following settings:

<!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">

 I have two panes: a list box on the left, and a content frame on the right.  I can't seem to get the content frame to fill the pane.  Any help would be greatly appreciated!

Here's the code:

    <ISWebDesktop:WebPaneManager ID="WebPaneManager1" runat="server" Height="506px" Width="100%" >
        <ImagesSettings SplitterGripBottom="SplitterDown.gif" SplitterGripLeft="SplitterLeft.gif"
            SplitterGripRight="SplitterRight.gif" SplitterGripTop="SplitterUp.gif" />
        <ClientSideEvents OnBeforeResize="WebPaneManager1_OnAfterResize"></ClientSideEvents>
        <ImagesSettings SplitterGripLeft="SplitterLeft.gif" SplitterGripRight="SplitterRight.gif" 
            SplitterGripTop="SplitterUp.gif" SplitterGripBottom="SplitterDown.gif">
        </ImagesSettings>
        <FrameStyle BackColor="#E0E0E0" BorderColor="#404040" BorderStyle="Solid" BorderWidth="1px"
            ForeColor="White">
            <Padding Bottom="4px" Left="4px" Right="4px" Top="4px" />
            <Padding Top="4px" Left="4px" Right="4px" Bottom="4px"></Padding>
        </FrameStyle>
        <RootGroupPane GroupType="VerticalTile" Name="RootGroup">
            <Panes>
                <ISWebDesktop:WebPane AllowCollapse="Yes" ContentScrollable="False" Name="paneMenu"
                    Text="Menu" Width="Custom" WidthValue="190px" HeaderVisible="No" >
                    <ContentTemplate>
                        <div>
                        <ISWebDesktop:WebButton ID="wbNew" runat="server" Height="20px" 
                                AutoPostback="True" Text="Add New School" ViewStateMode="Enabled" Width="175px"></ISWebDesktop:WebButton>
                            <ISWebEssentials:WebListBox ID="wlbSchools" runat="server" Height="450px" Width="175px"
                                DefaultStyleMode="Natural" EnableKeyboardSupport="true" DataSourceID="SqlDataSchools"
                                TextFieldDataMember="SchoolName" ImageFieldDataMember="LogoName" ValueFieldDataMember="SchoolID"
                                ImageFieldFormatString="../schoollogos/{0}" AutoPostBack="false" 
                                SelectedIndex="0" AllowDefaultStyleMerging="false"
                                TargetURLFieldDataMember="SchoolTarget" >
                                <ItemImageStyle CssClass="schoolImageStyle" Overflow="Auto" OverflowX="Auto" OverflowY="Auto" VerticalAlign="Middle" HorizontalAlign="Right" 
                                    Margin-Bottom="5px" Margin-Top="5px">
                                </ItemImageStyle>
                                <ItemTextStyle Margin-Left="5px" Padding-Top="5px" Padding-Bottom="5px">
                                    <Margin Left="5px"></Margin>
                                </ItemTextStyle>
                                <ImagesSettings BottomScroller="../images/bottomscroller.png" TopScroller="../images/topscroller.png" />
                                <LayoutSettings ItemHeight="80" ScrollMode="Scroller" DisplayMode="TextAndImage"
                                    ImagePosition="BelowText" DisplayActiveItemIndicator="true" ItemAlignment="Center" TargetWindow="paneContent" />
                            </ISWebEssentials:WebListBox>
                        </div>
                    </ContentTemplate>
                </ISWebDesktop:WebPane>
                <ISWebDesktop:WebPane ContentMode="UseIFrame" ContentURL="Schools.aspx" 
                    HeaderVisible="No" Name="paneContent" Text="Pane 02" Height="Custom" HeightValue="460" ContentScrollable="False">
                </ISWebDesktop:WebPane>
            </Panes>
        </RootGroupPane>
    
    </ISWebDesktop:WebPaneManager>

 

I've tried many combinations of Custom Height & fill, and the content (which has a large web tab in it) still only takes up about 200 px in height.

Thanks in advance!

Beryl

All times are GMT -5. The time now is 6:45 PM.
Previous Next