Problem with vertical scroll bar of the block master detail

Have a TC of canvas by tabs with 3 tabs - tab A, B and C

Tab C contains a block of master child multi. Each block can display 5 records.

C tab

-> Master Block can display 5 records

-> Child block can show 5 records. Child block has nearly 20 columns to display. It is therefore a big canvas

question

It comes with vertical toolbars on Master Block and child block.

The horizontal toolbar works very well.

But if there are more than 5 records, we are not able to scroll the vertical toolbar.

Remember reading somewhere that for a block of single bar scrolling can be active. Please specify if this is correct and indicate what are the appropriate actions that we can take.

Thank you

951614 wrote:

But if there are more than 5 records, we are not able to scroll the vertical toolbar.

You have a separate master and detail block, right scroll bar?

If so, then which bar scroll creating problem for you, master? detail? or both?

Make sure you have the block with the appropriate scroll bar card, it can possible you have set the bar of scrolling detail with master block and main scroll bar with detail block.

951614 wrote:

Remember reading somewhere that for a block of single bar scrolling can be active. Please specify if this is correct and indicate what are the appropriate actions that we can take.

It is not correct.

You used the scroll bar with individual block. There is no restriction.

Tags: Oracle Development

Similar Questions

  • help with a problem of vertical scroll bar with a list item

    Hello. I have a < s:list > base using an XMLListCollection as there the data provider and a very basic itemrenderer. When a row is clicked in the list a function gets the list.selectedIndex then fills some text with more xml data fields. everything works fine... the problem I have is that the vertical scroll bar on the list seems to be "clickable" - as a line in the list. the scroll bar Scrolls normally but when he clicked on the selectedIndex property becomes-1 which is not useful b/c, the value-1 is passed to the XMLListCollection.

    any ideas? Cheers.

    The default value for SelectedIndex is - 1.  If you have not selected all the items in the list, then it will always return-1.

    Here is a sample application, view, if you select an item and then click the scroll bar is not - 1:

    http://ns.Adobe.com/MXML/2009.
    xmlns:s = "library://ns.adobe.com/flex/spark" >
       
       
            Import spark.events.IndexChangeEvent;
    protected function list1_clickHandler(event:MouseEvent):void {}
    trace ("Click event:", event.currentTarget.selectedIndex);
    }
    protected function list1_changeHandler(event:IndexChangeEvent):void {}
    trace ("change the event:", event.currentTarget.selectedIndex);
    }
    ]]>
       

       
       
           
       

       

  • Instability of the vertical scroll bar of the Panel

    Win 7 Professional, SP 1, 64-bit on a Lenovo ThinkPad. The vertical scroll bar on the "Programs and features" Control Panel suddenly is so unstable that it is impossible to click on a title. Agitation is present both a Logitech mouse and ThinkPad track point device, well even more so with the mouse. The mouse driver is up to date, and the batteries are charged.  The instability of the scroll bar does not seem to occur in all areas of the Control Panel, but appears on some menus of Windows Explorer, to a certain extent on this page (I have difficulties to access the submit button) and some Internet sites. Word so far.  What do about it?

    Hello

    Thanks for posting your query in Microsoft Community Forum.

    1. You did it no particular change in the computer before the show?

    Please, try the following suggestions and check.

    Method 1: Start your computer in safe mode

    http://Windows.Microsoft.com/en-us/Windows/Start-computer-safe-mode#start-computer-safe-mode=Windows-7

    If the problem does not occur in safe mode or safe mode with network and then places the machine to clean the start State and check if helps you solve this problem.

    Method 2: Run the clean boot

    Put your system to the clean boot state helps determine if third-party applications or startup items are causing the problem. You must follow the steps in the article mentioned below to perform a clean boot.

    See the link to perform the clean boot.

    How to perform a clean boot in Windows

    http://support.Microsoft.com/kb/929135/en-us

    Note: See 'How do I reset the computer to start normally after a boot minimum troubleshooting' to reset the computer starts normally after troubleshooting.

    Let us know if the problem still persists. We will be happy to help you further.

    Thank you

  • Can I put a vertical scroll bar in the browser firefox left?

    Can I put a vertical scroll bar in the browser firefox left?
    I'm left-handed so using the quite difficult scroll bar, so I want to move the scroll bar position, so I have to do? hope to receive a response soon from the Center

    The value of pref layout.scrollbar.side 3 to place the scroll bar on the left side.

    See:

  • Addition of vertical scroll bar to the Senior Manager

    Hello

    I want to add the vertical scroll bar to the Senior Manager. Somebodu can help me? How can I add?

    The article just Kropotkin, so the new link should now work for everyone:

    Implementation of a standard style on a Blackberry device scroll bar

    See if it works for you.

  • Vertical scroll bar on the right side is gone and I have no how to get it back.

    I did something I shouldn't have and have now no vertical scroll bar on the right side.  How can I get that back?

    It's a quick way to resize a window.

    Breaking of Windows,

    http://Windows.Microsoft.com/en-us/Windows7/products/features/snap

  • Move the vertical scroll bar of the Panel to the left of the Panel

    I have a skin Panel with the following:

    <s:Scroller id="contentScroller" height="100%" width="100%" 
                     horizontalScrollPolicy="off" verticalScrollPolicy="auto">
        <s:Group id="contentGroup" width="100%" height="100%" minWidth="0" minHeight="0"/>
    </s:Scroller>
    

    For the life of me I can't understand how to move from contentScroller to the left of its container.

    I tried setting contentScroller x, y, up, left, down, right, the properties height and width to different values, but what I have in the extract seems to be the only way that it appears at all.

    Based on the research, I tried this in the script of the skin:

    override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void {
        super.updateDisplayList( unscaledWidth, unscaledHeight );
        if( contentScroller.visible ) {
            //contentScroller.verticalScrollBar.x = 0;
            contentScroller.verticalScrollBar.x = -contentScroller.verticalScrollBar.width;
        }
    }
    

    Or lines in the if block makes no difference as to where this thing is rendered.  Here's a screenshot of my Panel:

    crap.JPG

    And here's what I would do:

    crap2.JPG

    Thanks for the research!

    I found a solution.

    I removed the code in the script block and I went back to a scroller in the mxml.

    
        
    
    

    I thought that I could set the vertical scroll bar by creating a skin based Scroller.  In the generated file, I saw this:

    Scroller unconditionally sets its skin's layout to private layout
    implementation that handles the scroll policies.  Scroller skins can
    only provide replacement scrollbars.  The skin's layout and
    constraints or dimensions set on skin parts will not be honored.  To
    gain more control over the layout of a viewport and its scrollbars,
    instead of using Scroller, add them to a Group and use the ScrollBar component's
    viewport property to link them together.
    

    So I then changed my skin Panel to look like the following:

    
        
            
        
        
        
            
                
            
            
        
    
    

    Finally, I added the following to the script block for positioning controls correctly:

    override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void {
        verticalScroller.left = topGroup.height;
        contents.left = verticalScroller.x + verticalScroller.width;
        super.updateDisplayList( unscaledWidth, unscaledHeight );
    }
    
  • problem with horizontal scroll bar

    Hi experts,

    I have two scroll bars in my form. The form is retrieving data from the database and showing 20 records at a time. But whenever I use my vertical scroll bar, horizontal scrollbar sometimes moves in the left corner of extream.

    The one you suggest please how can I fix this problem.

    Concerning
    Rajat

    Your scrollbars are window scroll bars? Or as I guess that the portrait is a block scroll bar and the horizontal is a canvas/window scroll bar.

    The horizontal scroll bar will move only if a current point of view gets the focus. Make sure that your home is not far jump to an item.

    Tony

  • Vertical scroll bar in the control table

    I use CVI 2012 and using a table control in the editor of the IUR. I started with a table containing 27 rows and 5 columns. The Panel container was large enough to display all the rows and columns, so without scroll bars have been necessary. Then I added more than 14 rows in the table, and a vertical scroll bar appeared on the right edge of the table. «By default, she marched to the bottom of the table, and I tried to change this up by changing"line 41 / 41" to "line 1 / 41" in the editor of the IUR.» He put back the first lines of the table, but the bar scroll also disappeared and I can't seem to restore, even if the table has more lines that can be displayed in the Panel containing.

    In dialog box "Edit Table" editor of the UIR, in the field of the 'appearance of control', the ' scrollbars: ' control has the value ' both scroll bars. I tried a number of combinations in the dialog "Options for size/Scroll...". "so - nothing seems to restore the scroll bar.

    I will attach the UIR file where this is useful. Interest table is the tool 'ID' tab thanks in advance!

    Barry Wealand

    I figured this out. Somehow, the width of the table control had also grown, such as the vertical scroll bar was pushed out the Panel on the right. By adjusting the size of the control so that the width of the table fits once more in Control Panel that contains the scroll bar appears once more.

    Barry Wealand

  • How to hide the vertical scroll bar in the Combobox?

    Hello

    I try to hide the vertical scroll bar in my combobox, because the number of items is small so it is not necessary that the vertical scroll bar is displayed.

    I have a very strange behaviour :

    When I view for the first time in my combobox, the vertical scroll bar is displayed - unless I have enough evidence to justify the appearance of the vertical scroll bar!

    When I select an item in my combobox, the vertical scroll bar disappears (good behavior): it is always the same list of items!

    I have try several solutions... the vertical scroll bar always appears!

    If you have any ideas, it will be fun...

    Thanks in advance

    concerning

    FM

    Try the following:

      primaryStage.show();
            Platform.runLater(new Runnable() {
                public void run() {
                    final Node scrollBar = comboBox.lookup(".scroll-bar:vertical");
                    scrollBar.setOpacity(0);
                }
            });
    
  • 0 line ListBox and vertical scroll bar problem

    Hello

    I tried to do simple VI where I can check the items in the Listbox control. My problem is that when I click anywhere on the buttons with the triangles, the mouse down or the vertical scroll bar of the event triggers and check the item in the line 0.

    Is this a problem or is it just a mistake in the code?

    For some reason, I'm not able to fix VI, so block diagram is below.

    Thanks for any help.

    I use LV 2010.

    Duri

    Here's a demo VI, who manages the selection listbox like that with a single click.  Sauve saved in 2011, uses the OpenG table.

  • How to remove the vertical scroll bar in IE7

    I thought I had mastered the video browser complete when I wrote this http://www.cybermountainwebservices.com/client0/date/ I neglected the fact that in IE7, there is a vertical scroll bar ruin the appearance of the full browser.  I know this is possible because this guy http://www.matthewkenneycuisine.com/ is not the problem.

    Add

    style = "overflow: auto".

    the body of your html page tag

  • Add the vertical scroll bar for content panel

    I need to use long passages of text in a fixed size content area, so I need to add a vertical scroll bar on the side. Muse support says that I have to use HTML code to do this. I'm a designer, not a coder, can someone walk me through it?

    Hi Jeff,

    I wrote a quick tutorial in response to a similar question. You can see here. Re: how to add a vertical scroll bar?

    Make sure you read the comments after the message that I made a few adjustments to coding.

    I hope this helps.

    David

  • vertical scroll bar in AdvancedDatagrid

    Hi all

    I had an AdvancedDatagid with 100 rows and grouping.

    After the application starts, the vertical scroll bar is not displayed. but after that, to develop a single entry and close it again, the scollbar is illustrated.

    When I force the vertical scroll bar life the command verticalScrollbarPolicy, the scollbar is shown but turned off. Once again, after expand and close one entrance, the scollbar is enabled.

    I guess, the AdvancedDatagid has no idea how many lines are available after reunification. also navigation keys do not work correctly. Up arrow works very well, but isn't the arrow down. But when the scroll bar is correctly displayed, the navigation keys works perfectly.

    After extended and close looks the adg calls that a method and the lines will be calculated. According to this update, ther scrollbar appear correctly.

    someone can tell me, how can I solve this problem?

    In the applicationComplete handler I call the groupCollection.refresh () method and the AdvancedDatagrid.refresh () method.

    Thanks advanced

    Frank

    I think that you are faced with a https://bugs.adobe.com/jira/browse/FLEXDMV-2426 which is fixed now.

    If you think that's a different issue, please log a bug.

  • HOW CAN I MOVE THE SCROLL BAR TO THE LEFT?

    I am left handed and the vertical scroll bar on the left. I used to be able to do this with firefox, but now I can't find how do in your help section. Help!

    You must change your settings at all: config. Here's what to do:

    1. Enter about: config in the address bar (if it gives a warning about your warranty, click the button to say you will notice)
    2. Enter layout.scrollbar.side in the search at the top of the page box
    3. Double-click the result and replace the current by a 3 value, when the prompt
    4. Click "OK" and restart Firefox.

Maybe you are looking for

  • LCD screen problems

    I think there is a problem with the connection between the body of the laptop and the screen because when the screen moves around the image changes and lines appear. I wonder where and how send this laptop for repairs? It is covered by the warranty a

  • Problem opening .jpg file in an e-mail message

    When you try to open the .jpg file in an e-mail message, get the message.  This file does not have a program associated with it for performing this action.  Create an association in the Folder Options Panel.  How should I do?

  • My LG phone is not detected by my computer

    I have a phone of lg800g that I am trying to connect to my laptop to download music and it loads via USB but does not appear in my computer.  How can I get it to appear in my computer?

  • HP2000 portable 2b44dx: videos its ok, the screen is green

    When I try to run any video, IE Netflix, youtube, news stories etc. sound is played, but the area of the screen which should show the video is of a bright green. All the other features seem ok. I think I can miss an update Thanks for any help

  • Flashing red images

    HelloI'm working on a project in after effects and I'm coming to overlap two videos on top of something, but when I play it back or even after that I have the export, the two small videos have red flashing images. I export it wrong or what? Please he