Right Scroll Bar

I just Postioned my container as "Fixed". Once I did that I lost my right scroll bar. What causes this problem?
Tim

John,
      I fixed it.. You put me in the right area.. It was so simple..
Thanks
Tim

Similar Messages

  • How to put the left to right scroll bar

    Hi iam new comer to sap, So pls help me. I want to display more than 17 fields from 6 different tables. At the time of display i want to put left to right scroll bar in my report screen. Because in my report screen the records are displayed with merged. So please give your valuable ideas.
    Thanks in advance
    regards,
    Kesav.

    Hi
    in classical report or intercative report it won't be possible
    do in ALV report that can be possible
    you can define any number of fieldcatalogs  means any number of fields in the output
    use in this way
    Your own company logo can go here if it has been saved (OAOR)
    If the logo is larger than the size of the headings in gt_page,
    the window will not show full logo and will have a scroll bar. Thus,
    it is a good idea to have a standard ALV header if you are going to
    use logos in your top of page.
    FORM top_of_page.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    it_list_commentary = gt_page
    i_logo = 'ENJOYSAP_LOGO'.
    ENDFORM. "top_of_page
    i wil send u my program by seaing that you can find it
    *& Report ZTEST_ALV_LOGO
    REPORT ztest_alv_logo.
    TYPE-POOLS : slis.
    *ALV Formatting tables /structures
    DATA: gt_fieldcat TYPE slis_t_fieldcat_alv.
    DATA: gt_events TYPE slis_t_event.
    DATA: gs_layout TYPE slis_layout_alv.
    DATA: gt_page TYPE slis_t_listheader.
    DATA: gs_page TYPE slis_listheader.
    DATA: v_repid LIKE sy-repid.
    *ALV Formatting work area
    DATA: w_fieldcat TYPE slis_fieldcat_alv.
    DATA: w_events TYPE slis_alv_event.
    DATA: gt_bsid TYPE TABLE OF bsid WITH HEADER LINE.
    INITIALIZATION.
    PERFORM build_events.
    PERFORM build_page_header.
    START-OF-SELECTION.
    *perform build_comment. "top_of_page - in initialization at present
    SELECT * FROM bsid INTO TABLE gt_bsid UP TO 10 ROWS.
    *perform populate_for_fm using '1' '3' 'BUKRS' '8' 'GT_BSID' 'Whee'.
    *USING = Row, Column, Field name, display length, table name, heading
    *OR
    PERFORM build_fieldcat.
    gs_layout-zebra = 'X'.
    *top of page event does not work without I_callback_program
    v_repid = sy-repid.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = v_repid
    i_structure_name = 'BSID'
    i_background_id = 'ALV_BACKGROUND'
    i_grid_title = 'This is the grid title'
    I_GRID_SETTINGS =
    is_layout = gs_layout
    it_fieldcat = gt_fieldcat[]
    it_events = gt_events[]
    TABLES
    t_outtab = gt_bsid.
    Form..............: populate_for_fm
    Description.......: Populates fields for function module used in ALV
    FORM populate_for_fm USING p_row
    p_col
    p_fieldname
    p_len
    p_table
    p_desc.
    w_fieldcat-row_pos = p_row. "Row Position
    w_fieldcat-col_pos = p_col. "Column Position
    w_fieldcat-fieldname = p_fieldname. "Field name
    w_fieldcat-outputlen = p_len. "Column Lenth
    w_fieldcat-tabname = p_table. "Table name
    w_fieldcat-reptext_ddic = p_desc. "Field Description
    w_fieldcat-input = '1'.
    APPEND w_fieldcat TO gt_fieldcat.
    CLEAR w_fieldcat.
    ENDFORM. " populate_for_fm
    *& Form build_events
    FORM build_events.
    DATA: ls_event TYPE slis_alv_event.
    CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
    EXPORTING
    i_list_type = 0
    IMPORTING
    et_events = gt_events.
    READ TABLE gt_events
    WITH KEY name = slis_ev_user_command
    INTO ls_event.
    IF sy-subrc = 0.
    MOVE slis_ev_user_command TO ls_event-form.
    APPEND ls_event TO gt_events.
    ENDIF.
    READ TABLE gt_events
    WITH KEY name = slis_ev_top_of_page
    INTO ls_event.
    IF sy-subrc = 0.
    MOVE slis_ev_top_of_page TO ls_event-form.
    APPEND ls_event TO gt_events.
    ENDIF.
    ENDFORM. " build_events
    *& Form USER_COMMAND
    When user command is called it uses 2 parameters. The itab
    passed to the ALV is in whatever order it currently is on screen.
    Therefore, you can read table itab index rs_selfield-tabindex to get
    all data from the table. You can also check r_ucomm and code
    accordingly.
    FORM user_command USING r_ucomm LIKE sy-ucomm
    rs_selfield TYPE slis_selfield.
    READ TABLE gt_bsid INDEX rs_selfield-tabindex.
    error checking etc.
    SET PARAMETER ID 'KUN' FIELD gt_bsid-kunnr.
    CALL TRANSACTION 'XD03' AND SKIP FIRST SCREEN.
    ENDFORM. "user_command
    *& Form top_of_page
    Your own company logo can go here if it has been saved (OAOR)
    If the logo is larger than the size of the headings in gt_page,
    the window will not show full logo and will have a scroll bar. Thus,
    it is a good idea to have a standard ALV header if you are going to
    use logos in your top of page.
    FORM top_of_page.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    it_list_commentary = gt_page
    i_logo = 'ENJOYSAP_LOGO'.
    ENDFORM. "top_of_page
    *& Form build_fieldcat
    *Many and varied fields are available here. Have a look at documentation
    *for FM REUSE_ALV_LIST_DISPLAY and REUSE_ALV_FIELDCATALOG_MERGE
    FORM build_fieldcat.
    w_fieldcat-fieldname = 'BUDAT'.
    w_fieldcat-seltext_m = 'Dte pst'.
    w_fieldcat-ddictxt(1) = 'M'.
    Can change the position of fields if you do not want them in order
    of the DDIC or itab
    w_fieldcat-row_pos = '1'.
    w_fieldcat-col_pos = '10'.
    APPEND w_fieldcat TO gt_fieldcat.
    CLEAR w_fieldcat.
    ENDFORM. " build_fieldcat
    *& Form build_page_header
    gt_page is used in top of page (ALV subroutine - NOT event)
    *H = Header, S = Selection, A = Action
    FORM build_page_header.
    For Headers, Key is not printed and is irrelevant. Will not cause
    a syntax error, but is not used.
    gs_page-typ = 'H'.
    gs_page-info = 'Header 1'.
    APPEND gs_page TO gt_page.
    gs_page-typ = 'H'.
    gs_page-info = 'Header 2'.
    APPEND gs_page TO gt_page.
    For Selections, the Key is printed (bold). It can be anything up to 20
    bytes. It gets printed in order of code here, not by key value.
    gs_page-typ = 'S'.
    gs_page-key = 'And the winner is:'.
    gs_page-info = 'Selection 1'.
    APPEND gs_page TO gt_page.
    gs_page-typ = 'S'.
    gs_page-key = 'Runner up:'.
    gs_page-info = 'Selection 2'.
    APPEND gs_page TO gt_page.
    For Action, Key is also irrelevant.
    gs_page-typ = 'A'.
    gs_page-info = 'Action goes here'.
    APPEND gs_page TO gt_page.
    ENDFORM. " build_page_header
    REWARD IF USEFULL

  • Add left to right scroll bar

    How to I enable the left to right scroll bar in Dreamweaver
    CS3? Right now when my code reaches the side of the code screen it
    automatically goes under the previous line and won't extend pass
    the code screen width. I would to enable the scroll bar so it will
    continue past the right code screen barrier. Thanks for the
    help.

    PREFERENCES | Code Format
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "ninedoors" <[email protected]> wrote in
    message
    news:ges3t7$m0a$[email protected]..
    > How to I enable the left to right scroll bar in
    Dreamweaver CS3? Right
    > now
    > when my code reaches the side of the code screen it
    automatically goes
    > under
    > the previous line and won't extend pass the code screen
    width. I would to
    > enable the scroll bar so it will continue past the right
    code screen
    > barrier.
    > Thanks for the help.
    >

  • I wasn't able to see/use right scroll bar itunes 11 ---- I can now!

    In iTunes 11 I pressed:
    Alt + Space
    A small window opens in top left corner.
    Select "Minimize"
    Then go to the windows task bar and click on "iTunes" to pop open iTunes 11.
    The scroll bar on the right is now visible.  It is a temporary fix.
    Restarting itunes 11 will cause the right scroll bar to go bye-bye.
    What a sad mess this thing iTunes 11 is.

    Thank you for replying.  This actually my 13 year-old son's itouch.  He did this without really understanding what he was doing.  He heard some kids at school talking about it.  There was no malcious intent.  I'm trying to help him get his device back to the way it was.  He'll never do such a thing again.
    I googled DFU mode and tried to follow the steps that were recommended on various sites.  Nothing worked.  I am still getting the error message 3014 during the restore process.
    Any further advice you can provide would be greatly appreciated.
    Thank you.

  • When I go to websites the right scroll bar does not appear

    hen I go to websites the right scroll bar does not appear

    what is the url. Did you make the screen as wide as possible.
    A lot of web designers appear to think you have a lot of wasted unused space and are all to happy to "help you" make the most of that space.

  • Lost my right scroll bar

    Hi -- I had a right side scroll bar (up and down arrows) on my safari pages but now I can only scroll up and down with the arrow keys on the keyboard. is there a way to get it back -- I tried to max and min under view but it only changed the print -- didnt fix the screen
    thanks

    Chrissty21,
    Welcome to Apple Discussions.
    If the text is small enough to fit the page the scroll bars may not appear. You can control the size of the text by clicking Command-+ to increase size or Command-- to decrease the size.
    Other possibilities include:
    1. Try re-loading the page Command-R
    2. Closing the page and re-starting it Command-W then followed by Command-N and navigate to the page.
    3. Closing Safari Command-Q and then restarting it and navigating to the page.
    Please let us know if any of these suggestions help. BTW are you fairly new to Macs? If so I would recommend some reading to get familiar with OS X.
    Regards,
    Roger

  • The right scroll bar down arrow is inoperative on Gmail tab. This problem appeared after update to latest version of Firefox. Is there a fix?

    The down arrow on my Gmail tab does not function. If you click it the cursor changes and no movement of the scroll bar occurs.
    Other tabs have the "dotted" section of the down arrow below but not in the down arrow itself. The down arrows still work except for Gmail tab.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • When loaded webpage shifted to right. scroll bar not showing

    When I open a website the page is shifted to the right and partly off screen so I cannot scroll up or down in the document.

    Q1: Does that happen with all sites including this one, or on particular sites?
    Q2: If you change the zoom level using one of these methods, does it make any difference?
    * On the application menu (click the "3-bar" menu button), try the + and - buttons
    * Hold down the Ctrl key and tap the + and - buttons on the keyboard
    Q3: Have you noticed any problems with secure certificate errors or sites missing content?
    More generally...
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * (menu bar) Tools > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?
    In case one of your extensions is involved, could you test the page in Firefox's Safe Mode? That's a standard diagnostic tool to deactivate extensions and some advanced features of Firefox. More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using either:
    * "3-bar" menu button > "?" button > Restart with Add-ons Disabled
    * Help menu > Restart with Add-ons Disabled
    Not all add-ons are disabled: Flash and other plugins still run
    After Firefox shuts down, a small dialog should appear. Click "Start in Safe Mode" (''not'' Reset).
    Any difference?

  • HT204406 HOW CAN I GET BACK MY RIGHT SIDE SCROLL BAR?

    how can I get back the right side scroll bar in I-Tunes?

    I am missing the right scroll bar in mail only i need help to get it back

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

  • Unwanted hor-scroll bars in IE

    Hello all,
    I have designed a web page in Dreamweaver MX using frames
    (3-T,L,C) when I view it in Firefox scroll bars appear on the right
    side, which is correct, but when I view it in IE scroll bars appear
    on the right AND the bottom, even thow there is nothing to scroll
    left or right too.
    I have tried the scrolling="no", resizing the frames, etc. My
    video size is 1024x768, but the HTML file is only 800 wide, which
    should fit no problem in 1024.
    Also, I only get the hor-scroll bar when there is a right
    scroll bar. In other words, if what I have on a page is longer than
    the page, a right scroll bar appears, along with a bottom one. Very
    bizzare!!
    Any ideas how to get rid of the bottom scroll bar in IE?
    Much appreciated.

    Without checking too deeping, I believe it could be because
    your header is
    around the 800px width. So when you resize the window to
    about 800*600 you
    get a scroll in the bottom area to match the width at the
    top. Even though
    that bottom frame may not be as wide at the top, the browser
    has to take
    into account all the widths of the page elements.
    Nadia
    Adobe� Community Expert : Dreamweaver
    http://www.csstemplates.com.au
    - CSS Templates | Free Templates
    http://www.perrelink.com.au
    - Web Dev
    http://www.DreamweaverResources.com
    - Dropdown Menu Templates|Tutorials
    http://www.adobe.com/devnet/dreamweaver/css.html
    "Falcore4" <[email protected]> wrote in
    message
    news:e96836$5ug$[email protected]..
    > Here is the link:
    >
    >
    http://www.websites4design.com/Saugus%20Youth%20Soccer%20New/index.htm
    >
    > Select either Board or Registration links.
    >
    > Thanks

  • Issue with div "s4-workspace" and scroll bar

    Hi,
    I have a standard publishing site, I just added an horizontal menu (the publishing site doesn't have it) but I'm experiencing a strange behavior:
    With my custom menu the div "s4-workspace" shifts down by the height of the menu and I cannot see the end part of the page content.
    I noticed this because I was looking at the workspace right scroll bar and I could not see the end.
    I copied my horizontal menu from the Team Site, where the menu is scrolling inside the workspace, but I want to keep it fix under the ribbon.
    I guess that it's a div displacement problem, but I could not find anything to fix it. I opened the nigthandday.css and the core4.css looking for some CSS style property, but nothing...
    This is what it looks like:
    <!-- Ribbon end -->
    <div>
    <!-- my custom menu -->
    </div>
    <div id="s4-workspace">
    Any help?
    Thank you,
    Nicola.

    If you look at the page, you will notice that the whole page doesn't scroll by default.  Only the S4-workspace and below scrolls.  This is done through the use of a Javascript.  Your problem is that you have inserted something between the
    div's at the top of the page and the S4-workspace div.  The javascript isn't aware of that and so it's not factoring in that height when it calculates how to scroll the page.  So you can never reach the bottom.
    To fix it you need to either remove the factors that cause the partial page scrolling and scroll the whole page or insert your menu into either the top of the s4-workspace div or one of the other existing div's at the top of the page.  Take a look at
    the following article for a more indepth explanation.
    http://blogs.msdn.com/b/sharepoint/archive/2010/04/06/customizing-ribbon-positioning-in-sharepoint-2010-master-pages.aspx
    Paul Stork SharePoint Server MVP

  • Fuzzy iTunes cover art scroll bar

    Just recently got my Black Macbook Core 2 Duo with 2 Gig Ram and a 160 Gig HD. After I installed my music library into iTunes, the left-right scroll bar in cover art display has become quite fuzzy. A quit and restart solves it temporarily, but it also returns after some play time. Never happens with our Core Duo MacBook Pro. I see some others posted a similar question under iTunes without response. Is this fuzziness the product of the integrated video card in the MacBook? I sure hope not - I would have hoped better for its capabilities than that!

    I also have noticed the fuzzy Coverflow bar on my 1.83 cd macbook. It occurs intermittently in both my library and the itunes store. Also, the column headers (Artist, Genre, Song) sometimes refresh incorrectly so I am left with big black unreadable blobs. This is corrected if I switch back and forth from Coverflow. None of my other macs have either of these issues. Itunes is the only program I've used that displays these graphical anomolies. My initial guess is that it had to do with the gma950, although why it would only happen with itunes, I do not know.

  • Fuzzy cover art scroll bar

    Just recently got my Black Macbook Core 2 Duo with 2 Gig Ram and a 160 Gig HD. After I installed my music library into iTunes, the left-right scroll bar in cover art display has become quite fuzzy. A quit and restart solves it temporarily, but it also returns after some play time. Never happens with our Core Duo MacBook Pro. I see some others posted a similar question without response. Is this fuzziness the product of the integrated video card in the MacBook? I sure hope not - I would have hoped better for its capabilities than that!

    I'm also on a Core 2 Duo MacBook and have this same problem. I'm running 10.4.8 on my MacBook and my older, G5-powered iMac. I don't have the problem on the iMac.
    I also sometimes see the categories atop each column (song, artist, rating, etc.) run together and become unreadable. A simple quit and restart of iTunes always fixes the problem, but it does always return.
    Could this be an Intel systems only problem?

  • DIV Tag Scroll Bars

    I have a AP Div box that I want to hold more text than the
    vertical length has room for. I checked the box in the Positioning
    category for the overflow to scroll. This is all good. But is there
    any way to specify that I don't want the scroll bar bottom gray
    box?
    http://www.communicationssquared.com/C2newsite/services.html
    I can deal with the right scroll bar, because it's useful,
    but do I have to have that gray non-scroll bar on the bottom?
    Thanks.

    ethomasmcginnis wrote:
    > I have a AP Div box that I want to hold more text than
    the vertical length has
    > room for. I checked the box in the Positioning category
    for the overflow to
    > scroll. This is all good. But is there any way to
    specify that I don't want the
    > scroll bar bottom gray box?
    >
    >
    http://www.communicationssquared.com/C2newsite/services.html
    >
    > I can deal with the right scroll bar, because it's
    useful, but do I have to
    > have that gray non-scroll bar on the bottom?
    > Thanks.
    >
    Or even better than Micha's suggestion, let the content flow
    down the
    page and use the scrollbar the browser gives you.
    Bonnie

Maybe you are looking for

  • Linux forms6i+patch 1 : no triggers will fire

    Hi there: We are having significant problems w/ our Redhat 6 linux box as our forms server. (We're opting for apache 1.3 instead of OAS (for right now).) The linux box is running 6i w/ patch 1. The form appears fine and interacts w/ key strokes and t

  • Hello Evrybody, u guys r doing really really wonderful job. BDC links

    Hello Evrybody, u guys r doing really really wonderful job. I mus appreciate it. Now coming to my requiremnt, im a newbie to ABAP, I want to abt BDC,couple of days ago while surfing net i found a study material on BDC. it was really cool,awseome tht

  • Filesystem Suggestions for Oracle on Linux

    Hello. We've been running Oracle on Solaris with Veritas Volume Manager (w/ qio) for about 4 years now and we are gearing up for going Oracle (9i) on Linux (AS). Since we are just getting started I wanted to run through setting up a preliminary test

  • Check resources on oracle server

    Hi; I need to check if there are enough resources on our oracle server to create a new database instance and copy another database there. Would you please tell me how to do it. Yours sincerely Clayton Zhou null

  • Router says not connected to internet but I am.

    I have a wireless lap top and a hard wired printer and computer. All are reconized by the router. All required lights are on. Can go to internet with no problem, but the router adviser states "NO INTERNET CONNECTION   FOUND" I have tried the recommen