How to create a horizontal scroll bar for interactive report region?

Hello

I use APEX 4.2.5.00.08 and created interactive reports that contain many columns. However when viewing the results of the report, due to the large number of columns report/table data is outside of the region and a horizontal scroll bar appears in the window of my main browser. This seems not very good from the point of view of the customer/end user and I was wondering if it is possible the size of declare the region according to a specific size and have a scroll bar horizontal that it contains, so that users can view the rest of the report columns using the scroll instead bar rather than do what he done right now and go to the screen and having to use the main browsers horizontal scroll bar at the bottom.

I tried on IE8, Chrome and Firefox 27.0.1 and get the same result. I tried to follow the ideas in this thread, in interactive report horizontal scroll bar, but nothing is.

You have ideas on how I can get around this please?

Concerning

Hi user10248308


Try this


Step 1:-modify the interactive report

Step 2:-under defination region-> header area

put

Step 3:-under area Defination-> foot of the region

put


Please come back if this is not yet resolved.

Tags: Database

Similar Questions

  • Horizontal scroll bar for JComboBox through multiple aspect

    From [http://www.coderanch.com/t/432788/GUI/java/JComboBox-horizontall-scroll-bar] and [http://forums.sun.com/thread.jspa?threadID=5369365], I know that the technique to have a horizontal scroll bar for JComboBox.

    However, their proposed solution are limited to the Look n Feel specific.

    As you can see, the below excerpt key code is malfunctioning, if users are Linux machine with GTK + look n feel, or machine Windows with Nimbus look n feel.

    How can I have a portable way to JComboBox able to have a horizontal scroll bar?

    The complete source code is [http://jstock.cvs.sourceforge.net/viewvc/jstock/jstock/src/org/yccheok/jstock/gui/AutoCompleteJComboBox.java?revision=1.16 & view = markup]

    The key code snippet are as follows:

    package org.yccheok.jstock.gui;
    
    public class AutoCompleteJComboBox extends JComboBox {
    
       @Override
        public void setUI(ComboBoxUI ui)
        {
            if (ui != null)
            {
                // Let's try our own customized UI.
                Class c = ui.getClass();
                final String myClass = "org.yccheok.jstock.gui.AutoCompleteJComboBox$My" + c.getSimpleName();
    
                try {
                    ComboBoxUI myUI = (ComboBoxUI) Class.forName(myClass).newInstance();
                    super.setUI(myUI);
                    return;
                } catch (ClassNotFoundException ex) {
                    log.error(null, ex);
                } catch (InstantiationException ex) {
                    log.error(null, ex);
                } catch (IllegalAccessException ex) {
                    log.error(null, ex);
                }
            }
    
            // Either null, or we fail to use our own customized UI.
            // Fall back to default.
            super.setUI(ui);
        }
    
        // This is a non-portable method to make combo box horizontal scroll bar.
        // Whenever there is a new look-n-feel, we need to manually provide the ComboBoxUI.
        // Any idea on how to make this portable?
        //
        protected static class MyWindowsComboBoxUI extends com.sun.java.swing.plaf.windows.WindowsComboBoxUI
        {
            @Override
            protected ComboPopup createPopup()
            {
                return new MyComboPopup(comboBox);
            }
        }
    
        protected static class MyMotifComboBoxUI extends com.sun.java.swing.plaf.motif.MotifComboBoxUI
        {
            @Override
            protected ComboPopup createPopup()
            {
                return new MyComboPopup(comboBox);
            }
        }
    
        protected static class MyMetalComboBoxUI extends javax.swing.plaf.metal.MetalComboBoxUI
        {
            @Override
            protected ComboPopup createPopup()
            {
                return new MyComboPopup(comboBox);
            }
        }
    
        private static class MyComboPopup extends BasicComboPopup
        {
            public MyComboPopup(JComboBox combo)
            {
                super(combo);
            }
    
            @Override
            public JScrollPane createScroller()
            {
                return new JScrollPane(list,JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
                        JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
            }
        }
    }
    Published by: 803903 on October 20, 2010 18:03

    Darryl Burke wrote:
    Purists will tell you that such things should not be done in a renderer

    not too purist - but there are thingies you MUST NOT spread like that pollutes community knowledge ;-)

    There is an official way (read: code of the heart itself does swing combo) to access the pop-up window and then do what you must

        private void adjustScrollBar(JComboBox box) {
            if (box.getItemCount() == 0) return;
            Object comp = box.getUI().getAccessibleChild(box, 0);
            if (!(comp instanceof JPopupMenu)) {
                return;
            }
            JPopupMenu popup = (JPopupMenu) comp;
            JScrollPane scrollPane = (JScrollPane) popup.getComponent(0);
            scrollPane.setHorizontalScrollBar(new JScrollBar(JScrollBar.HORIZONTAL));
            scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
        }
        
    

    Simply assign the scroll bar will work at any time after the creation of the drop-down list (BTW: assigning the horizontalScrollBar null got really... didn't even know it is valid). If you want to resize the drop-down list, you will need to do it in a popupMenuListener willBecomeVisible: at this time, all internal components are ready for touch-ups. Just for fun, set up the drop-down list to adapt to the requirements of the size of a JXTable used as a rendering component:

        private void adjustPopupWidth(JComboBox box) {
            if (box.getItemCount() == 0) return;
            Object comp = box.getUI().getAccessibleChild(box, 0);
            if (!(comp instanceof JPopupMenu)) {
                return;
            }
            JPopupMenu popup = (JPopupMenu) comp;
            JScrollPane scrollPane = (JScrollPane) popup.getComponent(0);
            Object value = box.getItemAt(0);
            Component rendererComp = box.getRenderer().getListCellRendererComponent(null, value, 0, false, false);
            if (rendererComp instanceof JXTable) {
                scrollPane.setColumnHeaderView(((JTable) rendererComp).getTableHeader());
            }
            Dimension prefSize = rendererComp.getPreferredSize();
            Dimension size = scrollPane.getPreferredSize();
            size.width = Math.max(size.width, prefSize.width);
            scrollPane.setPreferredSize(size);
            scrollPane.setMaximumSize(size);
            scrollPane.revalidate();
        }
        
    

    and Yes, this is the example for setXXSize. But then, it isn't but application code a code 'in-house framework.

    See you soon... and the real work
    Jeanette

  • Model of User Interface for interactive report region

    3.2 where we establish the model of user interface for interactive reports region?

    No matter what on the theme of the box I go to, the region of interactive reports shows the same. What and where do I change the model so that alternate lines use two different colors?

    There is no model for interactive reports as for a 'normal' report You need to edit the CSS and provide your own for this purpose.

    I think that most of the things are marked with the #apexir - firebug with combustion chamber is priceless. This thread may help:

    Re: changing the appearance of the interactive report.

  • X 1163 projector shows smaller than the computer screen image and creates the horizontal scroll bar

    I just bought an Acer X 1163 projector for use in presentations. I like the brightness, size and features. I am disappointed to make a PowerPoint slideshow, you need to buy another remote, but it is an easy fix.

    Here's what's really about me!

    When I pull a Web site or other things on my laptop for the presentation, it has a horizontal scroll bar and does not fit it on the screen. I tried different settings and who are seeking an answer online, but can't find what I can do to get the image to display without a horizontal scroll bar.

    I'm almost beginning to panic that I bought this for a large presentation I have to give next week. I hope it's one of those stupid questions with an easy answer.

    Thanks in advance for your help.

    My techy boyfriend just called. Here is the solution. (It kills me when someone has a question asked and more later said: "never mind, I figured it" and never says how do to the next person to come.)

    The question seems to be in the computer resolution setting and how it automatically resets when plugging n the projector. To resolve this problem (at least in windows 7) follow these steps:

    Right click on the desktop

    Click on display

    Click on change display settings

    Select the 1366 x 768 resolution

    It shows exactly what I'm looking for now on my computer.

    Thank you for having a forum to ask in all cases

  • How to get the horizontal scroll bar of a Table?

    Hi all

    According to my requirement, I display multiple records in a form in a tabular Format. But here I must show 21 columns in this table that is too high. I am able to view it, but because it I get a scroll bar horizontal to the screen as all columns not in the normal window screen space. But its weird since the research once I am to right scrolling columns, but bar header and Global buttons above are not displayed, they are related to the normal screen space.

    Is it possible to have a horizontal scroll bar only for this table instead of the whole screen so that on the slider, only the rows in the table will be beshifted ant had displayed?

    With our thanks
    Gerber

    try this approach.
    include an element of plain text before and an array element.
    include HTML tags in the raw text element to allow horizontal scrolling

    Prasanna-

  • How to insert the horizontal scroll bar in the text element

    Hello
    I use form 10g. I'm all new concept of java bean.
    I had for the horizontal scroll bar class files...
    I don't know where I put the class files in the folder devsuite...


    Thank you...

    Hello

    Read this blog.

    You must follow these three steps:

    -Copy the JAR file into your directory / /Forms/java
    -update the archives and archive_jini tags from your /forms/server/formsweb.cfg of file:
    archive_jini = frmall.jar, your_jar.jar
    ...
    Archive = frmall.jar, your_jar.jar
    -the value of the item property for implementing class on the text with the corresponding full class name element

    François

  • poster not horizontal scroll bar in my report page

    Hello
    I have created a page of interactive report in the "Topaz" model. because I have more columns, I have to scroll across.

    This page worked fine on apex 3.2, but when it comes to apex 4.0, it does not display the horizontal scroll bar. This scroll bar becomes visible only when I click on the magnifying glass next to the search bar and select one of the options that are displayed in.

    Please can someone help me on this problem.

    Thank you
    Hary

    Hello
    I have the same problem using the theme 1 (red), but only with Internet Explorer 7. Firefox (3.6) display this page correctly.
    If I put the model in the region to "no model", shows the IE scroll bar too. I guess, the model of the region causes this problem. I tried to change that, but I still have no solution.
    Can anyone help?

    Thank you
    Andrej

  • How Can I Set horizontal scroll bar in BitmapField

    Hello

    It comes to Prasad. I'm new to the Blackberry development. Can someone explain to me how can I set scrolling horizontal bars/scrolling a BitmapField installation. Cause of the Image is larger than the size of the screen. The user should be able to see the Image. The image is in fact a graph on this case. I already used various layout managers to do this. But finally I have nothing. I read a lot of forums about it. And I tested it. But nothing works well. Blackberry JDE API said the Horizontal scrolling not yet implemented. I'm stuck here.

    So please be kind to give me a solution for this.

    Thank you.

    Prasad.

    Quck search this forum using "scrolling bitmap image" got the following, you will find more if you look.  Very useful tool is to be found.

    http://supportforums.BlackBerry.com/Rim/Board/message?board.ID=java_dev&message.ID=595&query.ID=2883...

  • Horizontal scroll bar is missing in the region without borders

    Hello

    I use v4.2.1.00.08 APEX and used 24 theme.

    I'm not able to see the horizontal in the region without borders scroll bar when necessary. I just used the code inside the < style > tag to display the scroll bar, below

    #RPT .uRegionContent
    {
    overflow:auto;
    }
    
    

    It works, but now I can see the only horizontal scroll bar for this region not in the browser. Can someone help me get the horizontal scroll bar in the browser.

    horizontal.JPG

    I created a test case for this species,

    https://Apex.Oracle.com/pls/Apex/f?p=32974:3:8262817666057:no

    WS/Nations United/PWD: adhimaha/adhimaha/adhimaha

    Can someone help me on this...

    Thanks in advance,

    Adhi

    Lakshmi,

    Check in your page 9 of the application or the tab Test Pars control.

    hope this has solved your problem.

    changes made

    1. create the new model of the region as a region without borders copy model

    2. change the region class 'uIRRegion' instead of 'uRegion '.

    3. apply this classic report template.

    Leave.

  • How to use CSS to create the horizontal navigation bar in Dreamweaver CS6

    How to use CSS to create the horizontal navigation bar in Dreamweaver CS6

    One of the ways to do this is the following: Editor Tryit v1.9

    You can also use floats to get something in the same direction.

  • How can I remove the horizontal scroll bar

    Hello!  I am a new user of muse.  My website is almost finished, except for the nagging horizontal scroll bar at the bottom of the page.  I can't understand why it is there for the life of me.  My page is http://testwake1.businesscatalyst.com/index.html#home

    The black background, I have to adjust the length of the browser and which seems to be the question because if I delete it the horizontal scroll disappears.  What can I do to remove the bar or change the page correctly?  Thank you very much for your help!

    Eric

    On the PC, it seems to only do in Chrome... Exploerer and Firefox does not display a horizontal bar.

    You can also check the properties of the Site, under the menu file/Site Properties window and see if the browser scroll bars have the value Always or automatic.

  • A very large page, continues that will feature a horizontal scroll bar

    Hello, I am trying to create a simple portfolio site that simply has a long, horizontal page which will be wider than the browser window and therefore produce a horizontal scroll bar that can scroll through manually. It's probably something very simple to achieve, but I don't know how! Can I change the width of the page somehow?

    Any help would be appreciated! Thank you.

    Yes, you certainly want to learn some HTML & CSS. Ask yourself everything is really simple, however. As he has

    already been said, you only need to change the width of your wrapper div (or any div that you use as a container for your site).

    So assuming that you are using a div wrapper for your content, the HTML would look like this:

    all content and other divs would be placed here, within the envelope

    The CSS for this wrapper div would look like this:

    {#wrapper}

    Width: 3000px;<-------this sets="" the="" width="" of="" that="" div.="" 3000px="" really="" wide,="" so="" a="" scrollbar="" is="" created="" to="" view="" the="" rest="" of="" the="">

    }

  • Can I add a horizontal scroll bar?

    Hello

    I have a datablock, employees, with the fields
    SQL> desc employees
     Name                            Null?    Type
     ------------------------------- -------- ----
     EMPLOYEE_ID                     NOT NULL NUMBER(6)
     FIRST_NAME                               VARCHAR2(20)
     LAST_NAME                       NOT NULL VARCHAR2(25)
     EMAIL                           NOT NULL VARCHAR2(25)
     PHONE_NUMBER                             VARCHAR2(20)
     HIRE_DATE                       NOT NULL DATE
     JOB_ID                          NOT NULL VARCHAR2(10)
     SALARY                                   NUMBER(8,2)
     COMMISSION_PCT                           NUMBER(2,2)
     MANAGER_ID                               NUMBER(6)
     DEPARTMENT_ID                            NUMBER(4)
    I created a page layout using the layout editor to display all the fields in a table. I could create a vertical scroll bar.
    but I also want a horizontal scroll bar.
    How can I create one?

    Thank you

    Published by: user12984479 on April 17, 2010 01:26

    Published by: user12984479 on April 17, 2010 01:27

    After you have created him contant and canvas stacked as you said.
    (a). open the canvas of the Department (telling) and select the menu view > stacked views.... It will show you this canvas (bunk) employee simply choose which to canvas and press ok. It will be on your main Department Web. Then adjust the canvas in keyboard and mouse on your condition where you want to place.
    (b) and for the tab key you said. To do this, you create a trigger called KEY-NEXT-ITEM. You will create this trigger where you want to go to the Web of the employee. Let's say you want that after the cursor name Department should go to the employee in any field of canvan. Then create the trigger on the name field service called NEXT-ITEM KEY and this trigger just write like this...

    GO_ITEM('');  -- Change the name upon your block and field name in form
    

    Hope it will work.
    -Clément

    Published by: Graham on April 18, 2010 08:22

  • Horizontal scroll bar went

    Horizontal scroll bar on web pages has disappeared.  How can I get that back?

    Hello

    Check the right lower setting on IE - + 100% (can be defined below) - set if necessary.

    Also check the VIEW - ZOOM and VIEW - text size (the average is the default)

    ================================

    What antivirus/antispyware/security products do you have on the machine? Be one you have NEVER
    on this machine, including those you have uninstalled (they leave leftovers behind which can cause
    strange problems).

    If no joy there's something blocking perhaps.

    Start - All Programs - Accessories - System Tools - IE with no Addons - what works best?

    IE - Tools - Internet Options - Advanced - tab click on restore, and then click Reset - apply / OK

    IE - Tools - Internet Options - Security tab - click on reset all default areas - apply / OK

    Close and restart IE or IE with no addons

    not better?

    IE - tools - manage Addons (for sure disable SSV2 if she's here, it is no longer necessary but Java
    installs and it causes more questions - have you never update Java to go back in and turn it off again.) Search
    other possible problems.

    Windows Defender - tools - software explore - look for problems with programs that do not look right.
    Allowed are usually OK and "unauthorized" are not always bad. If in doubt about a program, ask
    topic here.

    Could be a free - BHOremover - BHO - standalone program, needs no installation, download and run.
    not all are bad, but some can cause your question (toolbars are BHO).
    http://securityxploded.com/bhoremover.php

    How to change, add or remove startup programs in Windows 7
    http://www.SevenForums.com/tutorials/1401-startup-programs-change.html

    Also get Malwarebytes - free - use as scanner only.

    http://www.Malwarebytes.org/

    --------------------------------

    Try these to erase corruption and missing/damaged file system repair or replacement.

    Run DiskCleanup - start - all programs - Accessories - System Tools - Disk Cleanup

    Start - type in the search box - find command top - RIGHT CLICK – RUN AS ADMIN

    sfc/scannow

    How to fix the system files of Windows 7 with the System File Checker
    http://www.SevenForums.com/tutorials/1538-SFC-SCANNOW-Command-System-File-Checker.html

    Then run checkdisk (chkdsk).

    How to run check disk in Windows 7
    http://www.SevenForums.com/tutorials/433-disk-check.html

    I hope this helps.

    Rob Brown - MS MVP - Windows Desktop Experience: Bike - Mark Twain said it right.

  • Horizontal scroll bar in the model of interactive report region 5 Apex (universal theme)

    Hello

    We have migrated our application from 4.2 (theme: 21 scarlet) to 5.0 (changed to universal theme). Most of our reports are interactive reports and have more than 20 columns to display in the reports. 4.2 in the 'Region of report"model horizontal scroll bar came from bottom of page like below and has been easy for the user to scroll through the options to the right and see all the columns.

    Apex4.2.PNG

    In the universal theme apex 5 with 'interactive report' model in order to see the columns on the far right in the first lines user must scroll the vertical bar first, then scroll horizontal straight bar and vertical bar to go to the top


    Apex5.PNG


    How can you have the scroll as in 4.2 bar region of report model. I think that we need to make some changes in CSS and also need to copy the existing model and make changes and use this model in all reports.


    Thank you.

    RAM


    Hi Tim,.

    Thanks for the reply. I tried this option before posting forum. It did not work. Now, after changing position attribute fixed to the ' Page "(or region) in the report attributes section it works." " When we migrated the app at UT, he has been on 'None '. Problem solved now. Thank you.

Maybe you are looking for

  • Open a spam of FedEx, clicked on the link

    I ordered a few packages for Christmas so I opened the email and clicked on the tracking number and heard that it is a scam of current viruses. I have a MacBook pro, did not download anything, but my computer will be at risk? What I'd do here?

  • Windows Media Center Guide does not correct list shows

    I use a Vista Home Premium, the other day I reformatted my computer because I had problems with it. everything went well and media center opens and works very well. However, it used correctly list indicated in the guide, no matter what I do, and it w

  • Cannot access the internet, even though I am connected

    New laptop running windows 7 - says it is currently connected to a wireless network that I know works well, as I am also connected on this computer. But when I actually try to access the internet, I can't. I continue to turn the resolution of problem

  • How to disconnect a wireless network?

    Original title: router security passwords. My PC connects to my neighbors router without password because he gave me last month. I want to disable this auto connect and erase the memory of the password of my settup.

  • Blue screen of death occur frequently.

    Hello I have been to a lot of BSODS lately and hope someone might help solve the problem. Here is the link to the minidump files: https://SkyDrive.live.com/?mkt=en-GB#CID=E50B7ED317EFC79B&ID=E50B7ED317EFC79B%21186 Thank you Chantelle