Multiple scroll bars when using cl_gui_custom_container

Hi,
when my custom container ref to cl_gui_custom_container i'm seeing two horizontal and two vertical scroll bars.
can anybody explain me why?
thanks
pratyush

Hi,
You might be using splitter container, that is you are logically splitting your container into parts in the program.In that case, scroll bars will be displayed.
just check it.
Regards,
Sowjanya

Similar Messages

  • How can I get the panelTabbed to have a scroll bar when needed?

    I have a panelTabbed with4 tabs and I want a scrollbar to appear when I shrink the size of the page down. I discovered that the tabs dissappear and there is not way to access them during some accessibility testing.
    I tried inserting a panelGrouLayout around the paf:panelTabbed, but it did not help
    <af:panelHeader id="ph3" text="#{acrResBundle['Header.Reports']}">
    <af:panelGroupLayout id="pgl1" layout="scroll">
    <af:panelTabbed id="panelTabbed1" styleClass="AFStretchWidth"
    childCreation="lazy" inlineStyle="height:410px">
    <af:showDetailItem disclosed="true" id="showDetailItem1"
    stretchChildren="first"
    text="#{resBundle['Header.TopPredictors']}">
    <af:panelGroupLayout id="pgl3" layout="scroll">
    <af:region id="TopDr1"
    value="#{bindings.TopDriversRegion1.regionModel}"/>
    </af:panelGroupLayout>
    </af:showDetailItem>
    Also, the outer page, which uses fnd:applicationsPanel with scroll="true", that the above is embedded in does get a scroll bar when needed by other af:panelHeader sections of the page.

    Looks like the problem only occurs in screenReader mode, i.e., the ">>" link does not show up at all in screenReader mode, but does show up when not using screenReader mode. I filed bug 10407797
    Edited by: klaus gross on Dec 16, 2010 3:21 PM

  • Where is the scroll bar that used to be on the left hand side of the screen?

    Am very aggrevated at itunes 11.0   trying to search through my 16000 songs on my ipod.  there is no vertical scroll bar that used to be on the right hand side of the screen.  How do I get it back?????

    Thanks! That solved it.

  • Vertical Scroll bar not using all view port space

    I'm developing an ADF application in 11g to be used on a PC and under the browser on an IPAD.  My top page layout has a panel group layout of scroll.  When the page renders in IE it does not consume all the available viewport.  The vertical scroll bar stops about an inch above the bottom of the page.  On the IPAD, when I have the device in portrait orentation, I only get about half the window area.  I need to have the page render in all the available space on the viewport, especially on the IPAD.  Can anyone tell me how I can get the page to render and take up all the available space in the viewport?   

    I did try that.  I was having some issues with trying to put everything I had on the page inside of one.  I think it actuall turned out to be something else.  I was messing around with things on the page fragment.  ADF was adding a scroll bar but not using the whole page to do so.  I took the scroll panel off the page fragment and off of any other page fragment including the actual JSF page.  When I set a large heigth for the page on my top panel group, which I had on the main page that contained the bonded task flow region, I got the browser to create the scroll bar for me for the whole page.  It fixed the problem on the PC and it also fixed the issue I had with the page rendering on the IPAD.  The IPAD now allowed the whole page to be scrolled by sliding your finger. 

  • What is the "Other" category on the scroll bar when syncing?

    When I sync my 3G, the scroll bar indicates and "Other" category using 1.9 GB of my 8GB phone. What is this category and how can I minimize it's size?

    It is normal to hav 200 - 800 mb of other ( contacts, favorites, voicemail, recents, etc).
    If you have much more than this it indicates a corrupt file.  A restore should resolve.

  • Is there any way to hide or remove the scroll bars when programming?

    I wish the vi which builded by app builder can display a interface without the scroll bars even before it runs. Thank you very much!

    As was answered here, you can only hide the scoll bars when the VI is running. If you need to enter data or set options before running, then you should redesign the application with a "Go" button or a pop-up and not rely on the user to press the run arrow. Putting the controls inside a while loop would be sufficient and should be easy to do. It's that or live with visible scroll bars.

  • How do I get rid of double scroll bars when integrating a tumblr blog on my muse website?

    Hi there,
    Iim having problems getting rid of the double scrollbar I get when integrating a tumblr blog to my muse website? Is there a way to integrate the blog so I just get 1 scroll bar- just like on all other pages?
    Thank you

    Im not quite sure I seem to get it right. How do you suggest I change this iframe that I have imbedded?
    <iframe width="100%" height=1500px" src="http://xxxxxxxxxxxxxxxxx.tumblr.com" frameborder="0"  overflow:hidden;"></iframe>
    Thank you!

  • Problem changing scroll bar color using UIManager

    I am using the following code to change the color of a JScrollBar just before instantiating a JScrollPane:
    [ code ]
    //set colors
    UIManager.put("ScrollBar.thumbLightShadow", ltGrn );
    UIManager.put("ScrollBar.thumb", grn );
    UIManager.put("ToolBar.thumb", ltGrn );
    UIManager.put("ScrollBar.thumbDarkShadow", darkGrn );
    UIManager.put("ScrollBar.thumbShadow", darkGrn );
    UIManager.put("ScrollBar.thumbHighlight", ltGrn );
    //instantiate
    JScrollPane scrollPane = new JScrollPane( table );
    //reset UIManager
    UIManager.put("ScrollBar.thumbLightShadow", null );
    UIManager.put("ScrollBar.thumb",null );
    UIManager.put("ToolBar.thumb", null );
    UIManager.put("ScrollBar.thumbDarkShadow", null );
    UIManager.put("ScrollBar.thumbShadow", null );
    UIManager.put("ScrollBar.thumbHighlight", null );
    [ /code ]
    where ltGrn, darkGrn, and grn are various shades of green.
    Everything works fine, UNTIL I open another JFrame that is part of the same program. After doing this, the original scroll bar above is still green, EXCEPT the border of it has changed to Metal Theme puple from green. In addition, if that second JFrame has any JScrollBars of it's own, they are Metal Theme purple with a green border! It seems to be a bug since only one part of the JScrollBar changes. If anyone has any suggestions on this I thank you in advance.
    AC

    When I execute the following I see identical modified scrollbars on the two frames that are created within this little app. I am relatively new to Java, so the design might not be great here, but the code will compile and run as is. You can use this to see if you still see the effect you have described. I am using version 1.4.1_03 on Red Hat Linux 8.0.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.plaf.*;
    public class Frame extends JFrame implements ActionListener
         JButton btnOne = new JButton("First Frame");
         JButton btnTwo = new JButton("Second Frame");
         public static void main(String[] args)
              Frame f = new Frame();
              f.setSize(300, 300);
              f.show();
         public Frame()
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              redesignScroll();
              // This method resets the default colors for the scrollbars..
              btnOne.addActionListener(this);
              btnTwo.addActionListener(this);
              Container contentPane = getContentPane();
              contentPane.setLayout(new GridLayout(2, 1, 5, 5));
              contentPane.add(btnOne);
              contentPane.add(btnTwo);          
         public void actionPerformed(ActionEvent e)
              if (e.getSource() == btnOne)
                   new FirstPopUp();
              else new SecondPopUp();
         private void redesignScroll()
              final Color cBkd = new Color(97, 115, 87);
              UIDefaults defaults = UIManager.getDefaults();
              defaults.put("ScrollBar.thumbHighlight",
                        new ColorUIResource(Color.darkGray));
              defaults.put("ScrollBar.thumbShadow",
                        new ColorUIResource(Color.black));
              defaults.put("ScrollBar.shadow",
                        new ColorUIResource(Color.black));
              defaults.put("ScrollBar.background",
                        new ColorUIResource(cBkd));
              defaults.put("ScrollBar.darkShadow",
                        new ColorUIResource(Color.black));
              defaults.put("ScrollBar.thumb",
                        new ColorUIResource(cBkd));
              defaults.put("ScrollBar.highlight",
                        new ColorUIResource(Color.black));     
         private class FirstPopUp extends JFrame
              private JScrollPane sp;
              private String text = "Hello World!  First Pop Up!\n ";
              private JTextArea area;
              FirstPopUp()
                   area = new JTextArea();
                   int i = 0;
                   while (i < 20)
                        area.append(text);
                        i++;
                   sp = new JScrollPane(area);
                   getContentPane().add(sp);
                   setSize(200, 200);
                   show();
         private class SecondPopUp extends JFrame
              private JScrollPane sp;
              private String text = "Hello World!  Second Pop Up!\n ";
              private JTextArea area;
              SecondPopUp()
                   area = new JTextArea();
                   int i = 0;
                   while (i < 20)
                        area.append(text);
                        i++;
                   sp = new JScrollPane(area);
                   getContentPane().add(sp);
                   setSize(200, 200);
                   show();
    }

  • How can i make the popup window have scroll bar when the content is long?

    Hi,
    My page have a button, when click it, it will show a popup window, and invoke a taskflow.
    <af:commandToolbarButton text="edit"
                                             icon="#{sdk_EmImageMap.toolbar.editCommand.icon[true]}"
                                             disabledIcon="#{sdk_EmImageMap.toolbar.editCommand.icon[false]}"
                                             id="edit"
                                             binding="#{pageFlowScope.procBean.editBtn}"
                                             action="dialog:edit" immediate="true"
                                             partialSubmit="true" useWindow="true"
                                             windowEmbedStyle="inlineDocument"
                                             windowHeight="400" windowWidth="750">
    And the page in the taskflow is :
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:c="http://java.sun.com/jsp/jstl/core"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
       <jsp:directive.page contentType="text/html;charset=UTF-8"/>
       <f:view>
          <af:document title="#{pageFlowScope.procStepEditor.pageTitle}"
                       id="document">
             <af:form id="f1">
                <af:panelStretchLayout id="pgl1" topHeight="10%">
                   <f:facet name="top"/>
                   <f:facet name="center">
                      <af:panelStretchLayout id="psl1">
                         <f:facet name="center">
                            <af:panelGridLayout id="pgl3">
                               <af:gridRow marginTop="5px" height="auto" id="gr1">
                                  <af:gridCell marginStart="5px" marginEnd="5px"
                                               width="100%" halign="stretch"
                                               valign="stretch" id="gc1">
                                     <af:panelBox text="panel 1"
                                                  id="pb1"
                                     </af:panelBox>
                                  </af:gridCell>
                               </af:gridRow>
                               <af:gridRow marginTop="5px" height="auto" id="gr2">
                                  <af:gridCell marginStart="5px" marginEnd="5px"
                                               width="100%" halign="stretch"
                                               valign="stretch" id="gc2">
                                     <af:panelBox text="panel 2"
                                                  id="pb2">
                                     </af:panelBox>
                                  </af:gridCell>
                               </af:gridRow>
                               <af:gridRow marginTop="5px" height="auto" id="gr3">
                                  <af:gridCell marginStart="5px" marginEnd="5px"
                                               width="100%" halign="stretch"
                                               valign="stretch" id="gc4">
                                     <af:panelBox text="panel 3"
                                                  id="pb3">
                                     </af:panelBox>
                                  </af:gridCell>
                               </af:gridRow>
                            </af:panelGridLayout>
                         </f:facet>
                         <f:facet name="bottom">
                         </f:facet>
                      </af:panelStretchLayout>
                   </f:facet>
                </af:panelStretchLayout>
             </af:form>
          </af:document>
       </f:view>
    </jsp:root>
    And in panel 2, the content is added dynamically, so it cannot control the width. Once it is very long, then the UI will not show all the data in panel2, and panel 3 also cannot display.
    So i want to the window have a scroll bar. How can i do this?
    Thanks.

    Hi Timo.
    Thanks for your replies.
    I change the panel 2 like this:
    <af:gridRow marginTop="5px" height="auto" id="gr2">
                                  <af:gridCell marginStart="5px" marginEnd="5px"
                                               width="100%" halign="stretch"
                                               valign="stretch" id="gc2">
                                     <af:panelBox text="panel 2"
                                                  id="pb2">
    <af:panelGroupLayout id="pgl4" layout="scroll>
    </af:panelGroupLayout>
                                     </af:panelBox>
                                  </af:gridCell>
                               </af:gridRow>
    But it still cannot display a scroll bar for the panel 2.
    Thanks.

  • Scrolling question when using JLists

    I have a JList inside of a JScrollPane that I add items to dynamically. When a new item is added to the bottom of the list I would like the JList to somehow scroll so that the newest item is always displayed. Basically I want to anchor the vertical scroll bar to the bottom instead of the top. Anyone know how to do this?

    From the JList API:
    ensureIndexIsVisible(int index)

  • Removing multiple scroll bars of desktop inner page.

    Hi,
        The problem is that multiple horizontal and vertical scrollbars are appearing on the homepage of the portal. So, I need to remove the extra scroll bars which are visible on the desktop inner page area.
         I have tried setting the Isolation method as both "URL" and " Pumped-Deprecated" which was previously set to "Embedded" . Also, I tried to set the height type to "Fixed" and "Full-Page". But the scroll bars still appear.
        Please help me in solving this issue if anybody knows about it.
        Thanks in Advance !!

    Hi,
       I tried changing the properties of both the desktop inner page and the iview inside the inner page, but the scroll bars are not removed.
      Could u please provide the details of which other property should be changed as I tried changing the height type and isolation method as mentioned earlier.
      Thanks..

  • Is it or will it ever be possible to hide the notifocation bar when using firefox? Either with an extension or as an included setting?

    is there an option i havent found that will allow me to hide the notification bar while using firefox (similar to whats possible with opera mobile) if not is it likely to be added in a future update? as i dont think extensions have enough permissions to hide the notification bar.

    hello, there's the fullscreen addon: https://addons.mozilla.org/mobile/addon/full-screen-252573/

  • How can I get a tab to open in an oversize jpg image in its original size with scroll bars when I click on a link?

    I have a small program for storing my genealogy names and jpg images of the census pages where each name is found. The images have a thumbnail link that opens in a new tab to view the actual oversized census page. In the new tab the census page is small and not readable. How do I get the jpg image to appear in its original size with schroll bars so I can read the census in the firefox browser without using the zoom feature. It takes several clicks on the zoom to get the image to a readable size and that is time consuming, especially when I have several images opened.

    That works, thank you!
    Could I suggest that this feature (the ability to turn off or turn on the auto-resize of images) be part of the Options tab on Firefox? I think it's a setting that some users might want to change fairly often--even toggle back and forth on. It's a little annoying to have to go into about:config every time to do this.

  • Question about dock bar when using external screen

    Hey.
    For a while now, I have been using an external monitor with my 24" iMac. It has been running fine and the dock bar has been on the iMac's display along with the menu bar.
    Today, I switched it around and when I plugged the screen back in, the dock bar moved over to the external screen, leaving the menu bar in the iMac's display :S
    I have tried looking at the Screen settings, but so far it has not helped. I have tried unplugging the screen and putting it back in as well as trying to put the menu bar to the external display and back to the iMac's to see if the Dock bar followed. Alas, nothing happened
    Anybody have any idea what I need to do? Kind of a drag to have my dock bar on my lousy 17" screen... Thank you
    Best regards,
    Jesper

    While using the FB app, turn your iPad to landscape.

  • No progress bar when using IE7 and innerHTML

    hello;
    when I use javascript to:
    [code]
    document.getElementById(
    "my_shockwave_container_div").innerHTML = my_object_embed_string
    [/code]
    the progress bar does not work but instead just sits there on
    the screen blank, even though the .dcr does load and does begin
    playing when downloaded;
    if I simply place the object and embed tags into the HTML as
    a simple html document would normally be, the progress bar works;
    furthermore, the progress bar works on Mozilla and IE6
    regardless of the method I use;
    any thoughts??
    thanks
    dsdsdsdsd

    http://msdn2.microsoft.com/en-us/library/ms536437.aspx.
    This should take you to the reference for getElementByID in the IE
    developer center.

Maybe you are looking for