How to set height panelCollection

hello all
i have problem with UI, i can't set height panelCollection to full height in my page, and i have change StyleClass to AFStretchWidth/ AFStretchHeight
this below structure in my project file
template.jspx facet
panelGroupLayout
panelHeader
panelCollection
popup
anyone help :)
thx gan
agungdmt

Your PanelCollection is not stretched because neither PanelGroupLayout nor PanelHeader stretch its children. Either the PanelCollection has to be the root component or the whole hierarchy above it should be of components that stretch their children (for example, center facet of PanelStretchLayout, DecorativeBox, PanelSplitter, ShowDetailItem(stretch), etc.). Have a look here for more details:
http://download.oracle.com/docs/cd/E14571_01/web.1111/b31973/af_orgpage.htm#CDEFAFGJ (See the last 2 columns in the table)
http://download.oracle.com/docs/cd/E14571_01/web.1111/b31973/af_orgpage.htm#CDEECCJF
http://download.oracle.com/docs/cd/E14571_01/web.1111/b31973/af_orgpage.htm#CACHIIAE
Dimitar

Similar Messages

  • How to set height of JTable Header ?

    How to set height of JTable Header and set the text to another size ?

    You can set the font of the header as you can for any component. The font will dictate the preferred height of the header. If you don't like the preferred height, you can set that as well.
    // add table to a scroll pane or the header will not appear
    JTable table = new JTable(...);
    container.add(new JScrollPane(table));
    // get a reference to the header, set the font
    JTableHeader header = table.getTableHeader();
    header.setFont(new Font(...));
    // set the preferred height of the header to 50 pixels.
    // the width is ignored by the scroll pane.
    header.setPreferredSize(new Dimension(1, 50));Mitch Goldstein
    Author, Hardcore JFC (Cambridge Univ Press)
    [email protected]

  • How to set height of XControl?

    Hello,
    I want to set the height of xcontrol,but there is a problem when I try to set it by property node of xcontrol container bounds height. Top  and bottom of my control show incomplete.
    So,how to set the height of XControl correctly?
    Thank you! 
    Solved!
    Go to Solution.

    Attached you can find a small example how to get it to work. Please note that i limit the smallest value to 40 because lower heights lead to graphical issues when resizing to larger values again.
    So you can see that there are limitations to resizing of XControls depending on the facade of the XControl.
    hope this helps,
    Norbert 
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.
    Attachments:
    Resize XControl.vi ‏10 KB

  • ADF Faces: how to set height of af:panelBorder to be % of screen height

    Hi,
    I am having hard time setting height of af:panel to be a percentage of screen height. Using inlineStyle, I tried the following but it doesn't work:
    <af:panelBorder inlineStyle="height:90.0%;">
    Any thoughts?
    Thanks
    Message was edited by:
    samsam

    Hi,
    not sure skinning can help here. There is no property on the dialog
    Frank

  • How to set height of a JPanel ?

    Hi.
    My JPanel is a tad too high and I'd rather not use
    mypanel.setPreferredSize(int xxx, int yyy)
    because the breadth is alright.
    How do I play around with the height only?
    Something like
    myjpanel.setHeight(int yyy);
    would be nice but the method deoesn't exist.
    :-)

    Set the minimum size and maximum size as well, to force it to work no matter what the layout manager is. You can set the minimum width to something like 1 and the maximum to 2000 to ensure it works properly if the window is resized, but make sure the minimum height is the height you want. The dimensions are in pixels by the way.

  • How to set height of af:inputListOfValues

    Is there any way I can set the height of af:inputListOfValues?
    Thanks,

    Hi,
    not sure skinning can help here. There is no property on the dialog
    Frank

  • How to set one row or node 's height in the jtree?

    How to set height of one row or node in the jtree?
    I found the method :jTree.setRowHeight(height);.
    But I want to set height of one row ,not all rows of a jtree.
    Thanks for help!

    Who can help me?

  • How to set a minimum width and height for a stage or scene?

    Hello,
    Does anyone how to set a minimum width and height for a stage or scene?
    I tried listening for width/height property value changes and then adjust the width/height if necessary, but that causes unpleasant flickering of the window.
    In JavaFX 2.1 beta SDK for Mac OS, the Stage class has setMinWidth() and setMinHeight() functions which work very well.
    I'm wondering what's the equivalent way to do that when using the FX SDK for Windows.
    Any help is appreciated!
    Thanks.

    I was wondering how to enforce a minimum stage size with JavaFX 2.0.3.The same flickering way you are currently doing it. See: http://javafx-jira.kenai.com/browse/RT-15200 "Need a way to set the minimum size of a window"

  • How to set  row height  for  each row

    Hi
    i am trying to set rowheight of row in a JTable using setRowHeight(row,rowheight)
    it is not affecting on Table.but if i use setRowheight(rowheight) it applying
    entire table ,please help me to solve this problem
    after setRowHeight(row,rowheight), i am calling firechanged() method also ,i t will not affecting please hemp me
    how to set row height at runtime in a JTable

    Ok fine... do one thing... post ur code here let me check and tell u....
    Ciya.....

  • How to set Panel height to browser height?

    I have a panel in a module in an application (App > Module > Panel). I would like the panel to take up the full height of the browser window. How can I achieve this? Trying to set height="100%" doesn't work, and makes the panel disappear. Setting the layout to absolute also doesn't work when setting top and bottom margins to 20.
    Any ideas welcome.
    Thanks!
    Mike

    There is something odd going on. I did what you suggested, but then the module doesn't display. However, when I remove the percentage-based height tags everything shows up.
    It seems that the Panel object is sensitive to height being percentage-based. As soon as I set its height to "500" instead of "100%" it displays.

  • How to set TabbedPane header height?

    How to set TabbedPane header height?

    So you got help in this posting that shows one way to add a component to the tabbed pane.
    [http://forums.sun.com/thread.jspa?threadID=5337065]
    But you didn't acknowledge the help you received.
    So now you want more help? Well since you didn't reply to that posting I won't reply to this posting.

  • How to set up fixed height in ADF layout component

    I try to create a page by having my main content at the center of page within a box using a fixed height. The idea is when the content is too long, a vertical scrollbar should show up for that box instead of stretching that box. I tried to use trh:tableLayout and set height attribute for trh:cellFormat component. However, instead of showing a vertical scrollbar, it just stretches table cell. Does anyone have a solution to this issue? Thanks.

    Thanks for your fast reply. Yes, I already tried layout="vertical" which is not help. I am using JDeveloper 11.1.1.2.0. Actually what I want to do is I will display a block of information in a box area at the center of screen. If the information become too big for that box, I want a scrollbar to show up for that box instead of stretching that box to fit the content.

  • How to set multiple styles on a single component in flex ?

    Hi ,
    I would like to know how to set multiple styles on a single component in flex.
    Can anyone give me an example as to how to set multiple styles for a single component ?
    Thanks ,
    Regards,
    Ajantha

    Hi tuliptaurus,
    You can setStyleName property for chnaging the external css dynamically by using the setStyle() method ...
    btn.setStyle("styleName","blendButtonSkinOther");
    You can change the external css by using the styleaName property with setStyle method..the line in blue..where blendButtonSkinOther is another css class..
    blendButtonSkin {
        fontFamily: Arial;
        fontSize: 11;
        color: #F1F1F1;
        textRollOverColor: #F1F1F1;
        textSelectedColor: #F1F1F1;
        horizontal-align:center;
        width:150;
        height:30;
        cornerRadius:5;
        upSkin:ClassReference('assets.skins.BlendButtonSkin');
        downSkin:ClassReference('assets.skins.BlendButtonSkin');
        overSkin:ClassReference('assets.skins.BlendButtonSkin');
        disabledSkin:ClassReference('assets.skins.BlendButtonSkin');
        selected-up-skin: ClassReference('assets.skins.BlendButtonSkin');
        selected-down-skin: ClassReference('assets.skins.BlendButtonSkin');
        selected-over-skin: ClassReference('assets.skins.BlendButtonSkin');
    blendButtonSkinOther {
        fontFamily: Arial;
        fontSize: 11;
        color: #F1F1F1;
        textRollOverColor: #F1F1F1;
        textSelectedColor: #F1F1F1;
        horizontal-align:center;
        width:150;
        height:30;
        cornerRadius:5;
        upSkin:ClassReference('assets.skins.BlendButtonSkin');
        downSkin:ClassReference('assets.skins.BlendButtonSkin');
        overSkin:ClassReference('assets.skins.BlendButtonSkin');
        disabledSkin:ClassReference('assets.skins.BlendButtonSkin');
        selected-up-skin: ClassReference('assets.skins.BlendButtonSkin');
        selected-down-skin: ClassReference('assets.skins.BlendButtonSkin');
        selected-over-skin: ClassReference('assets.skins.BlendButtonSkin');
    Thanks,
    Bhasker Chari

  • How to set image size in a table view

    Hi,
    I've just built a small VC application showing some process chain logs in a table view. For the different status types Error, Warning and Success I show the well-known traffic light icons. But up to now I haven't found out how to set the image size in a table view (height & width field is greyed out for the table). Any ideas? Or is it just not possible?
    Thanks for your help,
    Heiko

    Hello Heiko,
    I don't know, if it is possible, but I would say,
    it's not implemented yet. Maybe you can change the picture size and use then the pictures, that might be a workaround, if you can't change the height and width in VC.
    Best Regards,
    Marcel

  • Can't figure out how to set a frame width

    Noob questions I suppose....our instructor has us creating a
    site using only framesets. I realize this isn't the best way to go,
    but we are leading our way up to CSS.
    If you look at my navbar, it needs to be 125 to be able to
    fit my buttons, but I can not for the life of me how to set the
    width of that frame.
    Also, how do I name the site on the index file from "untitled
    document" to what I want. I know how to do it on individual
    pages... or normal index pages, but here, it does not seem I can
    pull up the index file alone without everything being loaded and no
    way to edit the index file.
    Edit: Forgot to provide the link:
    http://www.webrevamps.com/assignment10/index2.html
    And the pages should not scroll. Hopefully I did that right.
    Thanks!

    Your instructor should be relieved of their duties. Nobody
    should be
    mentioning frames nowadays except to note that they are
    antique and should
    only be used on special occasions, and that their use will be
    left up to the
    reader to determine.
    > If you look at my navbar, it needs to be 125 to be able
    to fit my navbar,
    > but
    > I can not for the life of me how to set the width of
    that frame.
    You set the width of a frame the way you'd expect to - in the
    frameset page
    definition. When you create a framed site, you first create a
    frameset page
    that defines the width and height of every frame in the
    frameset, e.g.,
    <frameset rows="80,*" cols="*" frameborder="no" border="0"
    framespacing="0">
    <frame src="UntitledFrame-112" name="topFrame"
    scrolling="No"
    noresize="noresize" id="topFrame" />
    <frameset cols="80,*" frameborder="no" border="0"
    framespacing="0">
    <frame src="UntitledFrame-113" name="leftFrame"
    scrolling="No"
    noresize="noresize" id="leftFrame" />
    <frame src="UntitledFrame-114" name="mm_target"
    id="mm_target" />
    </frameset>
    </frameset>
    This defines a frameset containing two rows, one of which is
    split into two
    columns. The top row is 80px tall, and the bottom row is
    whatever is needed
    to fill the browser's viewport in height. The bottom row
    contains two
    columns, the leftmost of which is 80px wide, and the
    rightmost is whatever
    is needed to fill the browser's viewport.
    As mentioned, if your instructor hasn't given you this
    information they are
    doing a double bad job.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "motleyscrewed" <[email protected]> wrote in
    message
    news:[email protected]...
    > Noob questions I suppose....our instructor has us
    creating a site using
    > only
    > framesets. I realize this isn't the best way to go, but
    we are leading our
    > way
    > up to CSS.
    >
    > If you look at my navbar, it needs to be 125 to be able
    to fit my navbar,
    > but
    > I can not for the life of me how to set the width of
    that frame.
    >
    > Also, how do I name the site on the index file from
    "untitled document" to
    > what I want. I know how to do it on individual pages...
    or normal index
    > pages,
    > but here, it does not seem I can pull up the index file
    alone without
    > everything being loaded and no way to edit the index
    file.
    >
    > Thanks!
    >

Maybe you are looking for

  • How to find out the user trace

    Hi, I am using weblogic 8.1 server. User is using the application which is hosted on the weblogic server. I would like to findout the log for the particular user on the server. Could anyone help on this. Regards Sridhar Ponnurangam

  • Music control from apple tv to pc

    I can get my pc to play music to my apple tv but the apple tv will not get music from my pc. Is this a firewall problem or a router config problem

  • Candy crush says in app purchase complete but not downloaded

    trying to purchase candy crush in app purchase and it says payment complete but not downloaded.when i click ok to download nothing happens.

  • Problem doing noise analysis

    I would like to discuss on the phone whats going on... trying to do a noise analysis on opmap and Multisim is not giving me what I expected.

  • Dashboard widgets showing missing plugin icons

    A couple of my Dashboard widgets - notably Flight Tracker and Unit Converter - appear with the missing plugin icons and do not work. How do I fix this?