I want my horizontal scroll bar!

It is unbelievably tedious to have to open the custom zoom widget in order to accomplish something as simple as a horizontal scroll in a document -- particularly since the custom zoom widget cannot be moved over to the side where the bookmarks pane is. Instead, I have to open it, move the window, close it to actually see, lather, rinse, repeat.
Come on, please give us a horizontal scroll bar!

Hi Ric,
Very interesting. I don't need a horizontal scroll bar *all* the time, but when I'm zoomed in closer than the width of the page -- well, I sure as heck need it then. :-) I would guess that most people would like the horizontal scroll bar to appear/disappear based on whether it's relevant. That would be OK with me.
The reason I use Adobe Digital Editions is to read case studies for business school -- that is to say, for reference and citation purposes. That's why multiple docs is important. And a lot of these cases, it turns out, have mixed portrait/landscape orientation. Most of the case will be in portrait, but some exhibits will be landscape -- that's when I most need the horizontal scrolling, for landscape-oriented stuff.

Similar Messages

  • JTabel Horizontal scroll bar problem

    Hi,
    I want a horizontal scroll bar added to my table
    hence I do this
    table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    but the problem is If I increase the size of frame
    the cells do not resize hence there is a gap after
    the last column.
    How do I remove this gap

    Please reduce the container size in the screen thru SE51 that automatically create the scroll
    or check whether in the attributes of the screen "Hold scroll positio" not to be checked

  • My horizontal scroll bar went missing when I maximise the window. How do I fix them?

    My horizontal scroll bar went missing when I maximise the window. How do I fix them? I tried everything; such as auto hide the task bar. Even with this, I still can't see the horizontal scroll bar. I even tried the following and I still can't see the horizontal scroll bar.
    1) In a new tab, type or paste about:config in the address bar and press Enter. Click the button promising to be careful.
    (2) In the search box above the list, type or paste dom and pause while the list is filtered
    (3) Double-click the dom.disable_window_open_feature.scrollbars preference to switch it from false to true. By choosing true, you disable sites from deciding whether there can be scrollbars on a window, and Firefox uses its standard behavior for the page.
    If you want to always get other bars, here are the corresponding settings:
    Menu Bar: dom.disable_window_open_feature.menubar
    Navigation Toolbar: dom.disable_window_open_feature.toolbar
    Bookmarks Toolbar: dom.disable_window_open_feature.personalbar
    Please help.

    Can you post a screen shot?
    Taking a Screen shot; '''''Windows > Start >''''' search box '''''> Snipping Tool'''''.
    Save the picture(s) to your desktop. Now look at the '''Reply''' box below.
    Do you see the button under it that says '''Browse'''? Click it and then select
    the screen shot(s) from the desktop.

  • How to make the knob of a horizontal Scroll Bar stay at right

    Hi I need some advise to achieve this:
    I have a chart continuously deploying towards the right side (think on an electro cardiogram that is continuously feeding data). All the chart information is kept available inside a JScrollPane. What I want to achieve is:
    1. if the horizontal scroll bar knob is at the right end of the scroll bar make the end part of the chart be displayed continuously (view is scrolling to the right, the knob stays at the right end)
    2. if the user moves the knob left from the right end freeze the motion and just show the selected portion (meanwhile data keeps being fed and stored but not displayed)
    3. when the user decides to drag the knob again to the right end the behavior of point # 1 resumes.
    The basic swing structure I'm using for this is the following:
    public class Electro extends JPanel {
    public Electro() {
    JFrame f = new JFrame();
    JScrollPane sp = new JScrollPane(this);
    f.getContentPane().add(sp);
         f.pack();
         f.setVisible(true);
    I would highly appreciate any feedback from fellow members. Thank you.

    hi friend
    try this in ur code
    public class Electro extends JPanel {
    public Electro() {
    JFrame f = new JFrame();
    JScrollPane sp = new JScrollPane(this);
    sp.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
    sp.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS);
    f.getContentPane().add(sp);
    f.pack();
    f.setVisible(true);
    i think it will be help full to you
    thanks
    waiting for reply

  • Can horizontal scroll bar be removed?

    The listbox controls have horizontal scroll bar that can not be removed by property notes. Is there a way to change it to invisible? Also how do I change the controls from raised or recessed to flat? Thank you for your help.

    The only listbox with a horizontal scroll bar is the multicolumn listbox and it does have a property node to remove it or display it. In 8.5, the property is Visible Items>Horizontal Scrollbar Visible.
    There are modern controls, classic controls, and system controls on the palette. Pick the one you want or right click on an existing one and select 'Replace'. You can also right click and select Advanced>Customize.

  • Horizontal Scroll bar in a web table

    Guys,
      is it possible to have horizontal scroll bar in webtable , not like the webtable propery for each column.
      just i want drag a scroll like blanket in webtable like in internet explorer.
      will assing full points for fix.
    Thanks
    Shan

    Hi Shan,
    The problem is not clear, but if you are talking about a table web item within Web Application Designer then there is a property for the number of columns to be displayed per page. Just set that property to an appropriate number. Remember while setting the property that it applies only to key figures and not characteristics. So if you set it to say 5 - it will display the horizontal scroll option if you have more than 5 key figures in your table.
    If you do not want the SAP default scroll bar then set this property to a sufficiently high number so that the table is not broken up - in this case you will get the default internet explorer based scroll bar since the table will not fit in a single screen.
    Hope it helps,
    Regards,
    Nikhil

  • Horizontal scroll bar for the adf page

    Hi,
    We have around 7 tables in single jsff page. Here , we have a requirement like :
    We need to show horizontal scroll bar for the entire page instead of each table. Is there any way to get this.
    As of now, we have horizontal scroll bar for each table, but our customer is not accepting this, that want the scroll bar for the entire page.
    Please suggest the approach.
    Thanks

    I have grouped all the tables in panelgrouplayout.So, what is the problem (because it is not quite clear what you need)?
    If your PanelGroupLayout is with layout="horizontal", then the tables will be rendered next to each other horizontally but there will be no horizontal scrollbar on the page.
    If your PanelGroupLayout is with layout="scroll", then the tables will be next to each other vertically and there will be a horizontal and a vertical scrollbar on the page (if necessary).
    If you need your tables to be relocated next to each other horizontally and to have a horizontal scrollbar on the page, then use a PanelGroupLayouts(horizontal) inside a PanelGroupLayout(scroll):
    <af:panelGroupLayout layout="scroll">
      <af:panelGroupLayout layout="horizontal">
        <af:table> ... </af:table>
        <af:table> ... </af:table>
        <af:table> ... </af:table>
      </af:panelGroupLayout>
    </af:panelGroupLayout>If your problem is that you still have horizontal scrollbars inside the tables, then you should set appropriate widths to the corresponding tables (e.g. to <af:table> tags) such that they are large enough to fit the sum of corresponding column widths.
    ya, I know that its not god design, but its customer requirement, so we need to do that.If you expect some table(s) to be stretched automatically according to the size of browser's window, then you should re-think your UI design because PanelGroupLayouts do not stretch their children. A possible solution is to use a combination of PanelSplitters or other layout containers that stretch their children.
    Dimitar

  • Horizontal scroll bar in tabular form with columns freeze

    Hi All,
    I have a requirement where i have to create a tabular form in which the first three columns should be in freeze mode and it should have a horizontal scroll bar.
    with the help of Google i found an example [http://apex.oracle.com/pls/otn/f?p=267:46]
    I want the same thing as in the example but with first three columns in freeze mode
    But could not find out how to create this column freeze and horizontal scroll bar.
    Let me know if you have any idea on this
    Thanks in advance,
    Ananth

    Hi,
    It is easy to look at the page source and see what they have done
    if you search for var d1 = document.getElementById("d and d1 you see some javascript doing the magic.
    Thanks

  • Horizontal scroll bar in selectOneMenu tag

    Hi,
    I am using selectOneMenu tag to show the data. The data size is larger than the size of selectOneMenu tag. Inspite of increasing the size of tag,
    I want to add a horizontal scroll bar.
    Can someone please suggest me, how to achieve this?
    Thanks in advance.
    Regards,
    Rahul

    Hi,
    As suggested, I am using div tag to set the horizontal scroll bar in SelectOneMenu tag. The way I'm using it :-
    <div style="overflow-x:scroll; width:140px;">
    <h:selectOneMenu
              id="eventType"
              styleClass="standardInput"
              required="true"
              tabindex="40"
              onchange="clearMessage(this);"
              value="#{UserBean.activeEvent.eventType}"
              onkeydown="searchSelect( event);"
              onblur="searchBlur(event);" >
    <f:selectItems value="#{ReferenceLists.eventTypeList}" />
    </h:selectOneMenu>
    </div>
    This is adding the scroll bar outside the selectOneMenu tag but I want it in the dropdown window.
    Please suggest me, how to resolve the issue.
    Regards,
    Rahul

  • Horizontal scroll bar for combo/lsit box in JSP

    hi,
    i want "Horizontal Scroll bar" for combo box to display long names.
    regards,
    krishna

    Not a JSP issue. Look up styles, CSS, and dynamic HTML. They should help.

  • Urgent!!!!Add a Horizontal Scroll Bar for Table Control

    Hi Experts,
    I want to have a Horizontal Scroll Bar on my Table control.
    I tried with few properties for the Table UI Element but not able to solve it.
    If any one who had already done this please help me out.
    Thanks in advance..
    Regards, Kishore K

    HI Koen,
    Thanks for early Reply.
    When I use this I get
    Page Down ( ->!!, Arrown with lines pointing Down)
    Page UP
    Page Top    ( ->, Arrown with lines pointing Top)
    Page Down ( ->, Arrown with lines pointing Down)
    But I need only Page top and Page down for this Table UI .
    I think my question is clear enough.
    Please let me know this also.
    Thanks & Regards,
    Kishore K

  • Horizontal scroll bar vanished in CS5

    Hi, I am learning the CS5 program and out of nowhere my horizontal scroll bar has disappeared.  I notice that when I magnify from 100 to 150% then the scroll bar appears again, but I don't want to read my pages at 150%.  Any assistance is greatly appreciated!

    Need more info.
    Which OS are you using?
    Does this happen with all pages or just one?
    What were you doing when the scrollbar vanished?
    How big is your screen, are you using a dual display?
    Have you tried closing DW and/or rebooting your computer?
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Disable horizontal scroll bars from TOC

    Hi All,
    I am a silent member on this form. PLease help me with this
    issue. I want to disable horizontal scroll bar in the TOC pane in
    Webhelp. In Flash Help for some reason, it doesnt appear at all. So
    please can u guys help me out .... It really urgent .....

    Hi,
    Try this.
    In RoboHelp 6:
    Click on the Project pane on the left-hand pane.
    Open the Window that you are using for your project.
    Click the Advanced Properties button.
    Click on the Styles tab and you will see a Horizontal Scroll
    option.
    Good luck,
    Debbie Sarig
    www.lingotip.com - Translating the World!

  • Getting rid of horizontal scroll bar

    how do you make it so if a window is not fully maximizedthere
    is no scroll bar? For example if you AIM window is up and docked on
    most sites there is no horizontal scroll bar but on the site im
    building there is.....
    see links for examples.
    With
    Horizontal Scroll Bar
    Without
    Horizontal Scroll Bar

    It's been a while since I looked at this... basically just
    put everything in a centered wrapper and let the divs position
    themselves the way they are supposed to. You rarely ever need to
    use positioning/layers.
    =========================
    And... what I always say:
    "write it for FireFox then hack it for IE."
    Use the right
    DocType
    Validate your Markup
    Validate your CSS
    Why you want to
    validate
    Don't
    use tables for layout

  • Can we manipulate the Show Horizontal Scroll Bar property during runtime?

    Hi
    i have set the Show Horizontal Scroll bar to true in the property palette during design time but i want to set to false during run-time based on certain conditions.
    it is possible to set the Show Horizontal Scroll Bar property of the forms window to true or false during runtime?
    if yes, how do you do it?
    any help is appreciated. thx.
    Siti

    Hi there
    thank you for the reply.
    so is resizing of canvas using set_canvas_property('CANVAS6',WIDTH,690)
    possible during run-time based on certain conditions? thx.
    Siti

Maybe you are looking for

  • SY-DBCNT QUESTION ?

    CAN ANYONE TELL ME HOW TO USE SY-DBCNT AFTER THE SELECT STATEMENT ? I NEED THIS TO KNOW HOW MY RECORDS MY SELECT QUERY IS RETURNING ? THKS!       select * from ekbe into ekbe where                  ebeln = it_out-ebeln              and ebelp = it_out

  • TS1413 Ihave OX S Snow Leopard 10.5.8 and can't upgrade - any ideas how?

    I t appears that Apple does not support an upgrade from OX S Snow Leopard 10.5.8 to OX S 10.6 which means I am unable to upgrade to any higher versions such a mountain lion, etc. Does anyone know I there is anything available that would help me move

  • Broken mini dvi connector on thunderbolt monitor, any way to repair?

    I found instructions on how to remove the LED panel from the housing, but I could but find where to get a replacement 3 in 1 cable.

  • Incorrect overall processing status on Sales Document Header

    Hello Everyone, It has been observed at my clients site, though very sporadically, the sales document, overall processing status gets corrupted. SAP has provided correction reports by which we can rectify a corrupted status on the sales document, but

  • Restoring MAC address to the default

    If I do a ifconfig [device] hw ether [mac address], how can I later revert the settings back to the default MAC address without knowing it?