Removing double scroll bars in Alerts in 11g

When opening Alerts in 11g, it looks like the alert is a panel inside the browser instead of opening up a new browser window. For reports that are large, there is a scrollbar within a scrollbar.
How can the size of the alert box be increased so that only one scrollbar shows?

I am just wondering whether you were able to fix this issue? If so, can you please share with me.
thanks
Mahesh

Similar Messages

  • Remove vertical scroll bar from table control

    hi,
    i had used table control in my application. i want remove vertical scroll bar from table control.
    At initial time in table control there is no vertical scroll bar. In my table control lines are dependent on internal table which i was used to fill it.
    i was used these code for to set table control lines.
    DESCRIBE TABLE IT_RISK_ZINRISEXC LINES EXC_LINE.
    TC_RISK_EX-LINES =   EXC_LINE .
    Initially there is no data in internal table so there is no vertical scroll bar. After getting value i am filling internal table. and there is scroll bar in my table control. but i does not want that.
    i was not selected RESIZING-VERTICAL OR -HORIZONTAL.

    Hi,
    From Scroll Bars in Table Control
    You can remove the scroll bar in the table control by switching off horizontal and vertical scrolling in the properties of the table control. The properties can be accessed from the screen painter by double clicking on the table control. Regarding the page up and page down functions, I believe you add those buttons in the screen layout and code for them. You can use the standard function code for the page up and page down functions.
    or
    You can get rid of the vertical scroll bars by not setting table control lines. This way the user can only see the visible lines of the table control. As for the horizontal scrollbar, just make sure that your table control doesn't contain too many fields.
    Regards,
    Raj.

  • How can we remove the scroll bars from the table?

    Hi,
    I have a dynamic table. Currently the table appears with the scroll bars. But there is a requirement that the scroll bar should not appear and the table should stretch in the entire page. How can this be achieved.
    Thanks in advance
    Nita

    Thanks Mohammad for the reply.
    Was able to remove the scroll bars by using only the styleClass as AFStretchWidth. But there is a default partition in middle of the page still? Can i remove that too by any way.

  • Double Scroll Bars, Side By Side, End To End, In A JScrollPane

    I'm trying to create double scroll bars next to each other, end to end. One scroll bar is for the position in the grid, while the other, smaller scroll bar controls the zoom level. I am masquerading a JPanel as a JScrollBar. I'm adding two scroll bars to the panel, and encapsulating the panel in a subclass of JScrollBar. You might wonder why I would do that. Because JScrollPane only accepts JScrollBar classes in setHorizontalScrollBar() and setVerticalScrollBar(). I tried to override every painting method I could think of that was important, but when I test it, nothing is shown. It is completely blank. Here is the code below. I know I still have to override the general JScrollBar methods and pass them to the primary scrollbar. Does anyone have any ideas on how to do somethink like I am attempting to do?
    import java.awt.*;
    import javax.swing.*;
    import java.lang.reflect.*;
    * <p>Title: </p>
    * <p>Description: This class masquerades as a JScrollBar, but it wraps two scrollbars next to each other. The
    * main scrollbar, and the secondary scrollbar which is smaller. Any calls which treat this as a regular scrollbar
    * will return the main scrollbar's values, while the special methods can be used to return the seondary scrollbar's
    * values.
    * </p>
    * <p>Copyright: Copyright (c) 2003</p>
    * <p>Company: </p>
    * @author not attributable
    * @version 1.0
    public class DoubleScrollBar extends JScrollBar {
      JPanel panel = new JPanel();
      JScrollBar primary;
      JScrollBar secondary;
      public DoubleScrollBar(int orientation) {
        init(orientation);
      void init() {
        panel.setLayout(new GridBagLayout());
        if ( orientation == JScrollBar.HORIZONTAL ) {
          primary = new JScrollBar(JScrollBar.HORIZONTAL);
          secondary = new JScrollBar(JScrollBar.HORIZONTAL);
          GridBagConstraints gbc = new GridBagConstraints(0, 0, 1, 1, 0.75, 0.0,
              GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 0), 0, 0);
          panel.add(primary, gbc);
          gbc.gridx = 1;
          gbc.weightx = 0.25;
          gbc.anchor = GridBagConstraints.EAST;
          panel.add(secondary, gbc);
        } else if ( orientation == JScrollBar.VERTICAL ) {
          primary = new JScrollBar(JScrollBar.VERTICAL);
          secondary = new JScrollBar(JScrollBar.VERTICAL);
          GridBagConstraints gbc = new GridBagConstraints(0, 0, 1, 1, 0.0, 0.75,
              GridBagConstraints.NORTH, GridBagConstraints.VERTICAL, new Insets(0, 0, 0, 0), 0, 0);
          panel.add(primary, gbc);
          gbc.gridy = 1;
          gbc.weighty = 0.25;
          gbc.anchor = GridBagConstraints.SOUTH;
          panel.add(secondary, gbc);
      public Dimension getPreferredSize() {
        return panel.getPreferredSize();
      public void setPreferredSize(Dimension d) {
        panel.setPreferredSize(d);
      public Dimension getSize() {
        return panel.getSize();
      public void paint(Graphics g) {
        panel.paint(g);
      public void paintAll(Graphics g) {
        panel.paintAll(g);
      protected void paintComponent(Graphics g) {
        try {
          Method m = panel.getClass().getMethod("paintComponent", new Class[] {Graphics.class});
          m.invoke(panel, new Object[] {g});
        catch (SecurityException ex) {
          System.out.println("SecurityException");
        catch (NoSuchMethodException ex) {
          System.out.println("NoSuchMethodException");
        catch (InvocationTargetException ex1) {
          System.out.println("InvocationTargetException");
        catch (IllegalArgumentException ex1) {
          System.out.println("IllegalArgumentException");
        catch (IllegalAccessException ex1) {
          System.out.println("IllegalAccessException");
      public void paintComponents(Graphics g) {
        panel.paintComponents(g);
      public void repaint(long tm, int x, int y, int w, int h) {
        if ( panel != null ) {
          panel.repaint(tm, x, y, w, h);
      public int getWidth() {
        return panel.getWidth();
      public int getHeight() {
        return panel.getHeight();
      public static void main(String[] args) {
        JFrame f = new JFrame();
        DoubleScrollBar dsb = new DoubleScrollBar(JScrollBar.HORIZONTAL);
        dsb.setPreferredSize(new Dimension(200, 50));
        f.getContentPane().add(dsb);
        f.pack();
        f.show();

    I know this isn't zooming, but maybe it will help.import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Test3 extends JFrame {
      MyPanel mp = new MyPanel();
      public Test3() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container content = getContentPane();
        JScrollBar jsb = new JScrollBar();
        jsb.addAdjustmentListener(new AdjustmentListener() {
          public void adjustmentValueChanged(AdjustmentEvent ae) {
            mp.setSize(ae.getValue()*5);
        content.add(jsb, BorderLayout.EAST);
        mp.setPreferredSize(new Dimension(500,500));
        content.add(new JScrollPane(mp), BorderLayout.CENTER);
        setSize(300, 300);
      public static void main(String[] args) { new Test3().setVisible(true); }
    class MyPanel extends JPanel {
      int size;
      public void paintComponent(Graphics g) {
        super.paintComponent(g);
        g.setColor(Color.red);
        g.drawRect(10,10,size,size);
      public void setSize(int size) {
        this.size=size;
        repaint();
    }

  • Removing vertical scroll bar on innerpage/content area

    Hi All,
    I am trying to remove extra vertical scroll bar on innerpage/content area. I followed below weblog
    http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/5192 ..."Those pesky scrollbars when using URL isolation"
    It works if I give fixed pixels like 1000 px for inner page height.
    obj = document.getElementById("isolatedWorkArea");
    obj.style.height = 1000 + 'px';
    But its not getting dynamic height of the content area using below code which is mentioned in the blog.
    reqsize = window.frames[obj.name].document.body.scrollHeight + 100 ;
    obj.style.height = reqsize + 'px';
    Please advice if anybody have a solution for this.
    Thanks a lot.

    Hello,
    First of all if you wand to remove the scroll bar you should use;
    obj.style.overflow="hidden";
    About dynamic height I cannot tell you if the sollution proposed on the blog is suitable for you.
    Normaly you should use only:
    reqsize = document.body.scrollHeight + 100 ;
    In order to find out the total height of your page.
    I don't understand why do you want to do all this. You will have cases when parts of the content will not be visible to the user due to these restrictions.
    BR
    Alex

  • Can you remove Firefox Scroll Bar ....[Solved]

    In Firefox I am looking for a way to remove side scroll bar
    Is this possible?
    Did have a quick google but only came up with tab scroll????
    Last edited by Mr Green (2008-12-20 20:55:47)

    Mr Green wrote:it does remove scrollbar but you lose mouse wheel scrolling ;-(
    I use the following…
    /* hide vertical scrollbar */
    notificationbox {
    overflow-x: hidden;
    browser[type="content-primary"], browser[type="content-targetable"] {
    overflow-y: scroll;
    margin-right: -12px; /* 12px == width of my scrollbar */

  • Remove/Hide scroll bars in scroll panes.

    Hi all,
    I am pretty new to action script. I am building a photo gallery and I am loading the thumbnails from an XML file into a scroll pane dynamically. As the scroll pane fills up, it gets wider to accomodate the thumbnails. There is one row, and eventually, I want to have the user be able to mouse left or right and have the scroll pane scroll, versus clicking on the bar or the left/right arrows. However, in order to accomplish this, I need the scroll bars to disappear!
    Is there anyway to either remove or hide both the x and y scroll bars on a scroll pane? My scroll pane is called: thumbPane.
    Thanks in advance!
    -Rob

    Hello friend,
                       first select scrollpane.Then open parameters panel (if dont know go to window > properties > paramiters ) turn to OFF HorizontalScrollPolicy  and verticalScrollPoliy then left and right scroll Bar will not display.
    THANKS.

  • Removing horizontal scroll bar from iframe

    how can i remove the horizontal scroll bar from an
    iframe when the contents does not need one.

    You don't get the horizontal scrollbar unless the contents
    need one.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "straight guy" <[email protected]> wrote in
    message
    news:e7qfk8$fbo$[email protected]..
    >
    how can i remove the horizontal scroll bar from an
    iframe when
    > the contents does not need one.

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

  • Remove the scroll bar of excel sheet in excel web access web part sharepoint 2010

    Hi All,
    i am using excel web access in sharepoint 2010. but when i insert excel file in this its showing me 2 scroll bar. one for sharepoint page which is easy to remove and second in excel file.
    so i want to remove the excel sheets scroll bar not for pages scroll bar.
    i have tried all things like adjust height width and all things but unable to remove scroll bar for
    excel file.
    Please give some soln or steps for this. Please reply ASAP.
    Thanks
    Vivek

    Hi Vivek,
    You tried almost all possible ootb way to achive your goal, but contact inside excel file and browser compatibility restrict you to adjust height and width using web part properties.
    You can try below article and include that script to fix this 
    https://www.nothingbutsharepoint.com/sites/eusp/Pages/jquery-for-everyone-dynamically-sizing-excel-web-parts.aspx
    Let us know if this helps, thanks
    Regards,
    Pratik Vyas | SharePoint Consultant |
    http://sharepointpratik.blogspot.com
    Posting is provided AS IS with no warranties, and confers no rights
    Please remember to click Mark As Answer if a post solves your problem or
    Vote As Helpful if it was useful.

  • 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 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.

  • Remove horiztonal scroll bar in search pane

    RH8.0.2 HTML.
    Hi all, wondering if anyone has a fix for the horizontal scroll bar that popups up in my search pane for webhelp.
    I've gone to great lengths to get my help in the right sized window with no horizontal scroll bars - they annoy me soooo much.
    But now, and always I have noticed, they appear in the search pane when results are displayed. No matter how far i widen it they do not go away.
    Is there some work aorund for this?
    Thanks.
    Nick

    Hi,
    The search results are written in a HTML-file, are they not?
    Checked in RH7, but I think it's the same in RH8:
    In wfhdhtml.htm, the search windows is build using frames. Look for the frame that calls whfbody.htm. On the end of the line is the text scrolling='yes', set that to no.
    If that doesn't work, I'll check in RH8 when I have the Chance.
    Greet,
    Willam
    This e-mail is personal. For our full disclaimer, please visit www.centric.eu/disclaimer.

  • What can i replace an iframe with? (Death to double scroll bars!!)

    So the site I'm working with has a ton of links all directed to an iframe.  The iframe is set to a fixed size and will not expand/contract with the linked content so i end up with two scroll bars.
    Here is the web site.
    I was hoping for a 'quick' fix to replace the iframe with some kind of object that the links could dump their pages to that would expand the length of the site as needed.
    Any help would be much appriciated!!
    Thanks!

    Use Server-side includes for common headers, menus and footers.  Or build a DW Template file (dwt) and use it to spawn new site pages.
    Guidance  on when to use DW Templates, Library Items and SSIs  -
    http://www.adobe.com/devnet/dreamweaver/articles/ssi_lbi_template.html
    More on DWTemplates -
    http://forums.adobe.com/message/2032104#2032104
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • No double-scroll bar arrows in iTunes 7

    I like a lot about 7, (gapless playback, hooray!) however I'm disappointed that the trick to add arrows to both ends of the scroll bar ( there are many pages that describe this, here's one ) does not affect iTunes 7. There are only one set of arrows.
    Others seem to confirm this, but I've not found a workaround/remedy.
    Anyone know if there another way to do this?

    I can't believe that after 7 versions, support for keyboard access in dialog boxes still hasn't been enabled. No sheets, either. iTunes has always felt like a glorified port of a Classic app.

Maybe you are looking for

  • How to insert a background file in a word file using jacob?

    how to insert a background image file in a existed word file using jacob and set the image as behind text? Also, where I can find the documentation for jacob, Thx very much.

  • While creation of a equipment and assignment of personnel number

    Hi I have activated partner function to the Equipment catagery. While creating equipment using T.code IE01,  I am assigning personnel number to the person responsible partnerfunction. After that personnel number getting defaulted to operator field as

  • Unable to determine the install root path for the LabVIEW Runtime Engine

    Hi, i have an issue with using a LabVIEW interop assembly in a .NET application. I get an exception "Unable to determine the install root path for the LabVIEW Runtime Engine" when calling the assembly. The little test program is attached below. It's

  • Need help, RED 2K workflow

    Been working on the CS5 trial, testing red 2K and 4K and some d7 and PII footage... running sweet.. According to these I'll stablish my post workflow PC based.. but...my delivery format apple PRORES... I'm working on the trial CS5 that's I'm not sure

  • Developer Server & Web Based Forms

    Hi, Can anyone provide any tips on improving the performance of web based developer forms? I am currently using a static implementation in Developer 6 with Oracle Appliactions Server as the web server. Is there any advantages/disadvantages of using t