Horizontal scrolling for Apex 4

I need horizontal scroll from one page to the Apex 4. I saw an old thread on horizontal scrolling using Apex 3.2. Here is the link to that thread where vee has given some code of the plugin to achieve this scrolling:

bar Scroolling fixed.

I saved the code in the thread in the js file and tried to import it as a plugin, but the import has failed, saying that it was not a plugin file.

All the world is made in 4 Apex? I will be grateful for the guidance to achieve this.

Thank you

Hello

For horizontal scrolling copy your theme 15 standard report to the new name.
Model change front of lines to

And model after lines to

#EXTERNAL_LINK##CSV_LINK# #PAGINATION#

Horizontal/Vertical scrolling, you must create same kind custom model I in sample application for the report page 1

Kind regards
Jari

Published by: jarola April 20, 2011 17:56

Tags: Database

Similar Questions

  • Horizontal scrolling for the GridField Manager problem

    Hi all

    I have my working in the Application in which I have my display my data using GridField Manager. I used the code in the example given in link by tboatright of the user.

    Now in my application, I used the extension of the screen and it automatically gives the vertical scroll bar if the total height of lines in my GridField Manager is more than BB Simulator screen. In using this I can scroll vertically easily by substituting navigationMovement (int dx, int dy, int, int time status) method...

    Now the problem is, I have 6 columns in my network manager and their width is 80 each. So only 3 columns are displayed on the Simulator screen when the first time grid is displayed but I get no horizontal scroll bar, I m not able to scroll horizontally through my all columns. Now using dominant navigationMovement (dx int, int dy, int, int time status) method (in accordance with its encoding in the above link), I am able to setFocus on the columns by pressing the left/right keys on my keyboard on Simulator of BB, but with this screen doesn't move (scroll) left or right accordingly if I m not able to see column4 column 5, column6, which are placed to the right of the main screen width of BB.

    I hope that my question in the clear for you guys...

    Thanks in advance

    You have set the style for the screen like HORIZONTAL_SCROLLBAR and HORIZONTAL_SCROLL? because the style VERTICAL_SCROLL and VERTICAL_SCROLLBAR will be set by default. We must define explicitly for horizontal scrolling

  • Horizontal scrolling for textfiled

    I created the textfield that used the image to focus, unfocus. I could ' t able to move the horizontal scrolling of the slider on the textfield. If I removed the focus for below constructor method it's excellent work for both horizontal scroll and cursor position. Please, help me to horizontal scrolling is defined (if the character hit is greater than textfield width).

    class Textbox extends Manager {
        private int managerWidth;
        private int managerHeight;
        private int arcWidth;
        private VerticalFieldManager vfm = new VerticalFieldManager(
                NO_VERTICAL_SCROLL | USE_ALL_WIDTH |HORIZONTAL_SCROLL);
        private AutoTextEditField  editField;
        private Bitmap bagBitmap;
        int fntSize=26;
        String strhint,hint,str_img;
        Textbox(String _hint, final String image,final String focusImage, long style) {
            super(style | NO_VERTICAL_SCROLL | NO_HORIZONTAL_SCROLL);
            managerWidth = 300;
            managerHeight = 40;
            hint = _hint;
            str_img = image;
            long innerStyle = style & (READONLY | FOCUSABLE_MASK); // at least
            if (innerStyle == 0) {
                innerStyle = FOCUSABLE;
            }
            bagBitmap =Bitmap.getBitmapResource(str_img); // initialize the image to draw
            editField = new AutoTextEditField("", "", 50, innerStyle|AutoTextEditField.NO_NEWLINE){
                    public void paint(Graphics g) {
                        getManager().invalidate();
                        FontFamily fontFamily[] = FontFamily.getFontFamilies();
                        this.setFont(fontFamily[1].getFont(FontFamily.SCALABLE_FONT,fntSize).derive(Font.SIZE_MEDIUM, fntSize,Ui.UNITS_px));
                        super.paint(g);
                    }
                    protected void onFocus(int direction){
                        str_img = focusImage;
                        bagBitmap = Bitmap.getBitmapResource(str_img);
                        invalidate();
                    }
                    protected void onUnfocus(){
                        bagBitmap = Bitmap.getBitmapResource(str_img);
                        invalidate();
                    }
            };
            arcWidth = 15;
            vfm.add(editField);
            add(vfm);
        }
        public void setFont(net.rim.device.api.ui.Font font) {
            FontFamily fontFamily[] = FontFamily.getFontFamilies();
            this.setFont(fontFamily[1].getFont(FontFamily.SCALABLE_FONT,fntSize).derive(Font.SIZE_MEDIUM, fntSize,Ui.UNITS_px));
            editField.setFont(fontFamily[1].getFont(FontFamily.SCALABLE_FONT,fntSize).derive(Font.SIZE_MEDIUM, fntSize,Ui.UNITS_px));
            arcWidth = editField.getFont().getHeight() & 0xFFFFFFFE;
            updateLayout();
        }
        public int getPreferredWidth() {
            return managerWidth;
        }
        public int getPreferredHeight() {
            return managerHeight;
        }
        protected void sublayout(int w, int h) {
            if (managerWidth == 0) {
                managerWidth = w;
            }
            if (managerHeight == 0) {
                managerHeight = h;
            }
            int actWidth = Math.min(managerWidth, w);
            int actHeight = Math.min(managerHeight, h);
            layoutChild(vfm, actWidth - arcWidth, actHeight - arcWidth);
            setPositionChild(vfm, arcWidth / 2, arcWidth / 2);
            setExtent(actWidth, actHeight);
        }
        protected void paint(Graphics g) {
            g.drawBitmap(0, 0, getWidth(), getHeight(), bagBitmap, 0, 0);
            strhint = editField.getText();
            if ( strhint == null || strhint.length() < 1 ) {
                g.setColor( 0xAFAFAD );
                FontFamily fontFamily[] = FontFamily.getFontFamilies();
                net.rim.device.api.ui.Font font =   fontFamily[1.getFont(FontFamily.SCALABLE_FONT,fntSize).derive(Font.SIZE_MEDIUM, fntSize,Ui.UNITS_px);
                g.setFont(font);
                g.drawText(hint, 10, 10, 30, 250);
            }
            super.paint(g);
        }
    }
    

    Could you explain that again so I do not understand your problem.   It doesn't seem to be a code of development/unfocus in there?

    But before we do, there are a few problems with your code, you need to fix.

    In no particular order:

    (a) I painted the 'index' in the EditField, rather than in this area.  In this way it will appear when a user types rather than being anywhere where '10, 10' is on your property.

    (b) move this code:

    FontFamily fontFamily [] = FontFamily.getFontFamilies ();
    this.setFont (fontFamily [1] .getFont (FontFamily.SCALABLE_FONT, fntSize) .derive (Font.SIZE_MEDIUM, fntSize, Ui.UNITS_px));

    your routine painting and put it in sublayout.  This is the point that it is necessary.  Do in object means it is too often and is probably recursively called.

    As a result, you should be able to remove

    getManager () .invalidate ();

    any object and

    updateLayout();

    of setFont().

    (c) when you paint your index, derive the police every time that:

    FontFamily fontFamily [] = FontFamily.getFontFamilies ();
    net.rim.device.api.ui.Font fonts fontFamily = [(FontFamily.SCALABLE_FONT, fntSize) 1.getFont .derive (Font.SIZE_MEDIUM, fntSize, Ui.UNITS_px);]

    This is inefficient, you need only do this once and save a reference to it for use when you paint your index

    Do all these you will have a better field and maybe your problem will be solved.  But if not, then please explain your problem again with more details and repost your fixed code.

  • Problem Manager of horizontal scrolling for OS 6.0 and more?

    Hi all. I have a problem with the Manager of Horizontal scrolling. Every thing worked for OS 5.0 and below, the question arises for OS 6.0 and more. For example, check the following:

    I have 2 HFM added to the optimization of resources.

    HFM1 - contains 2 buttons.

    HFM2 - contains 6 buttons, and the user can scroll between the buttons.

    The questions is when user keep hitting the right key, when the focus is on the second button of HFM1, then the content of HFM2 scrolls to the right - what is bad behavior.

    Check the screenshot for Simulator 9810 (when scrolling to the right inside the HFM which contains the test1, test2 scrolls the second HFM):

    Scrolling in a managing scrools in another, why this happen and how that might be solved?

    Thank you in advance.

    Finally, I found a solution using ScrollChangeListener (SCL).

    So what I did I set the SCL for HFM2, then:

     public void scrollChanged(final Manager manager, int newHorizontalScroll,
                int newVerticalScroll)
        {
    
            //----> fixing the issue when one HFM scroll another one for OS 6.0 and above
            int fwf = manager.getFieldWithFocusIndex();
            if (fwf == -1)
                manager.setHorizontalScroll(0);
            //<---- fixing the issue when one HFM scroll another one for OS 6.0 and above
    
    }
    

    Thanks to all in any case.

  • Disable horizontal scrolling for iPad

    Hello

    I know that various iterations of this issue are floating around, but I was wondering if there is way to disable scrolling of elasic that iPad not without disabling the pinch zoom.

    I want to use the shot to the left and right swipe to change the information on the screen. The iPad of course automatically scrolls the page and then bounces. The work of scanning, but any interface is too wobbly.

    e.preventDefault();gives me the result of the move I'm looking but disables the zoom pinch. It is possible to have something between the two? When I go to yahoo.com on the ipad, it does not drag the screen to the left or right, only from top to bottom. Any ideas would be appreciated.

    Thank you

    Try to throw this in your

    (replace by whatever your width)

    Throwing just a guess, since I don't have an iPad to test with

  • Smooth horizontal scrolling

    Hello

    I noticed that National Geographic has horizontal aritcles marching slowly from left to right (not up and down). How do do that? What is only a function of business account?

    Would appreciate a quick response.

    Thank you.

    They have either a large pan and zoom overlay on the page, or they simply two items that have the good-aligned content it looks like a smooth roll (but isn't).

    There is no feature of magic smooth horizontal scrolling for the clients of the company.

    Neil

  • horizontal scroll bar to the APEX 5

    Off I want to say that I know that this question is almost identical to this position of ScrollBar is horizontal in the area of interactive report 5 (universal theme) Apex model or

    Problem is that their solution doesn't seem to work on our application for.

    Problem:

    After our 4.2 application migration, using a theme customized, universal theme 5.0.  We have a lot of interactive reports with a lot of columns.  When you use 4.2 the horizontal scroll bar is part of the 'window' and the user can scroll to view all additional columns at any time.

    Since we migrated to the universal theme the horizontal scroll bar appears in the report rather than the 'window' forcing users to scroll down the lines displayed to view additional columns.

    I tried as shown in the previous post to be sure in the attributes of the region, we set the Cap "fixed to" = page.

    and the Show maximize has been checked in the Options of the model.  Have tried the model "Interactive" both the model 'Standard '.

    We have always failed to get the horizontal scroll bar to move the window rather than in the report.

    According to me, I have to miss a step.  Any help would be appreciated.

    OK, alright its really bad, but I just noticed the report maximize button in the window

    When I press on the scroll bar jumps out of the window, as we wish.  We'll just have to educate people to use this button.  Amazing to see that a few days away from a question means for your home.

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

  • How to set horizontal scrolling to horizontal field Manager when fields are added using a loop for?

    The following code snippet contains a horizontal field Manager to which are added five buttons.

    1. I can't the value of horizontal scrolling to horizontal management Manager because of who I am not able to access the keys 4 and 5.

    2. usually, we put horizontal scrolling in the following way:

    container = new HorizontalFieldManager(USE_ALL_WIDTH|HORIZONTAL_SCROLL|HORIZONTAL_SCROLLBAR);
    

    3. so I also tried setting of horizontal scrolling in the following way

       container = new HorizontalFieldManager(Manager.HORIZONTAL_SCROLL|Manager.HORIZONTAL_SCROLLBAR)
                {
    
                    protected void sublayout(int maxWidth, int maxHeight) {
    
                        Field field = null;
                        int x = 0;
                        int y = 0;
                        int maxFieldHeight = 0;
                        int maxFieldWidth = 0;
                        for (int i = 0; i < getFieldCount(); i++)
                        {
                            field = getField(i);
                            layoutChild(field, maxWidth, maxHeight);
                            setPositionChild(field, x/*width-field.getWidth()*/,y);
    
                            x+=field.getWidth();
    
                            maxFieldWidth = maxFieldWidth + field.getWidth();
                            System.out.println("field width"+field.getWidth());
                            System.out.println(" max field width"+maxFieldWidth);
    
                            if(i==0)
                            {
                                maxFieldHeight = field.getHeight(); // height set of the first button since all components have the same height
                            }
                        }
                        System.out.println("final max field width"+maxFieldWidth);
    
                        setExtent(maxFieldWidth, maxFieldHeight);
    
                    }
                };
    

    but it's not working.

    4 I found this property: (position) horizontalFieldManager.setHorizontalScroll; that contains the parameterioo where the post is supposed to be the new horizontal scroll position. I tried passing the coordinate x of horizontal field Manager, but it does not work. I should pass as a parameter position?

    HorizontalFieldManager container = new HorizontalFieldManager()
    {
        protected void sublayout(int maxWidth, int maxHeight)
        {
            Field field = null;
            int x = 0;
            int y = 0;
            int maxFieldHeight = 0;
            for (int i = 0; i < getFieldCount(); i++)
            {
                field = getField(i);
                layoutChild(field, maxWidth, maxHeight);
                setPositionChild(field, x,y);
                x+=field.getWidth();
                if(i==0)
                {
                    maxFieldHeight = field.getHeight(); // height set of the first button since all components have the same height
                }
            }
    
            setExtent(Display.getWidth(), maxFieldHeight);
    
        }
    };
    
    ButtonField button1 = new ButtonField("Button1");
    ButtonField button2 = new ButtonField("Button2");
    ButtonField button3 = new ButtonField("Button3");
    ButtonField button4 = new ButtonField("Button4");
    ButtonField button5 = new ButtonField("Button5");
    
    container.add(button1);
    container.add(button2);
    container.add(button3);
    container.add(button4);
    container.add(button5);
    
    add(container);
    

    Need your valuable comments and suggestions. Please help me.

    I think that there is a bug in the sublayout (your HorizontalFieldManager 0 mode.  Given that the code did what I think WHAT HFM will do anyway, I recommend that you try to do this with a standard HFM, using this style:

    Manager.HORIZONTAL_SCROLL | Manager.HORIZONTAL_SCROLLBAR

    Let us know how you go.

    When I have more time I'll explain the bug, but if you want to investigate something, be aware that the maximum size that you can use in setExtent are the values that are passed to sublayout.  Compare the width as you try to define in setExtent whose width is increased.

  • Issue of bottom paint for horizontal scrolling

    Hello

    I have a HorizontalFieldManager with a gradient background which I've updated to enable horizontal scrolling. Scrolling works well, but the gradient background is not painted when scrolling to the right. Using trial and error "getHorizontalScroll()" to calculate and offset has not yet failed.

    The original code is lower for horizontal management.

    ...
        hm = new HorizontalFieldManager(hmStyle) {
          protected void paint (Graphics g) {
            g.clear();
            g.setBackgroundColor(bgColor);
            int[] xInds = new int[]{0, 0,getExtent().width, getExtent().width};
            int[] yInds = new int[]{0, getExtent().height, getExtent().height,0};
    
            final int[] cols = new int[]{bgColor, gradientColor, gradientColor, bgColor};
    
            g.drawShadedFilledPath(xInds, yInds, null, cols, null);
            super.paint(g);
          }
          protected void onFocus(int arg0) {
            super.onFocus(arg0);
            getScreen().invalidate();
          }
        };
    ...
    

    I know I'm probably not set up the xInds properly to compensate for offset from horizontal scrolling, but it's not obvious to me how to set up the offsets correctly. Can anyone offer a suggestion to troubleshoot? If not, is there a reference to certain documents which provides more detail than the docs of java on the functioning of the 'drawShadedFilledPath' and the logic of ScrollBar?

    Thanks in advance!

    int xstart = getHorizontalScroll();
    int xend = xstart + getVisibleWidth() - 1; // getWidth() is also good
    int[] xInds = new int[]{xstart, xstart, xend, xend};
    
  • 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.

  • 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

  • Workaround for ComboBox Horizontal scrolling necessary

    Hello

    I have a combobox that contains very long strings. (actually 3 strings (size of 10 characters name, type of size 10 and 3rd string containing a list of numbers of abt 60))

    But on the selection, the width becomes too great and goes off the screen.

    I don't want the value of width max because there is a requirement for the user to be able to see the content of the entire string.

    I learned that there is no Horizontal scrolling option in the drop-down list of the combobox.

    So I would like to know if the following is possible.

    show only the
    name and type in the drop-down list. and when the mouse is flown over a particular piece, shows a vertical list of 60numbers corresponding to the element currently being hovered.

    such a thing is possible? or you can suggest a better solution to workaround?

    an option is to select an item in the dropdownlist control, and then use alert.show () to view a list of all the numbers. but tat seems very coarse way of the doin it.

    Thank you.

    This code works pretty well using an itemRenderer, although you have to tweak it for your situation.

    If this post answers your question or assistance, please mark it as such.

    
    
      
        
      
      
        
          
            
              
              
            
          
        
      
    
    
  • Tablour form with column 20 how do scrolling Horizontal bar for column

    Hello

    I create a form that is Tablour style and who have more then 15 and 10 operating display column whenever I want to when I run form her show 5 first columns with horizontal scroll bar and I used the horizontal scroll bar to see my column to stay


    Concerning

    Wasim Ismail

    so simple

    You must take a canvas type will be stacked and access its property of canvas and research in the platte property "to see horizontal scroll bar the ' etc... Set it to yes

    and then display all the elements in this control now canvas,

    Waqas,
    Concerning

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

Maybe you are looking for

  • Monitor is empty

    I read through the questions until I posted so I hope that this is not a matter of repeating. About 2 days ago, my monitor just delete the message no signal came then it off ~ told me that the monitor may be dead, which can happen? or I might need to

  • Envy DV7 HP: HP DV7 Envy your PC need to be repaired a required device is not connected

    I have 10 Windows on my HP DV7 envy.  When I turn it on I get the error "Your PC need to be repaired a necessary device is not connected." None of the keys work, which means I can't select startup options or select System Restore.  It just brings bac

  • Satellite A105-S4547 boots itself using the battery

    Hi I'm new to this forum. Since the "password" problem and reset the bios, I have two things to hurt.1 work dosent Touchpad, but I'am not really taken worth on this subject because I use a mouse anyway. The biggest problem is that off, he starts up a

  • List of models of Yoga that have a Bay pen?

    Hello I tried to find information on models Lenovo Yoga supporting the stylus and a Bay pen on the keyboard to keep, but I can't find information on the official site. Do you know the guys from any place where we have a list with these models? or do

  • Is there an upgrade of BIOS for HP Pavilion DV5000?

    Now my BIOS information: Pavilion DV5000 Systembord id: 30AE Processor: AMD Turion 64 Processor speed: 1800 Mgh System memory: 1920 MB BIOS version: F.33 KBC version: 49,38 Serial number: [edited by Moderator] Official website of HP I can't find vers