Horizontal scrolling column view

With ther now being no "always visible" scroll bars in Lion, how the heck are we supposed to scroll horizontally in column view when using a device such as a tablet? Is this a MAJOR MISS in terms of usability? Why would there not be a scroll bar visible if I'm six columns / folders deep? How do you make it visible?

Sorted.
Just found in System Prefs / General a new selction that allows for "always on" scroll bars. No up or down arrows though.

Similar Messages

  • Horizontal Scrolling Image Viewer

    I am new to web design but certainly trying - my goal is to
    include/make a horizontal scrolling image viewer like the one seen
    on this site:
    http://www.fraxel.com/patients.aspx
    - any advice?
    -JL

    are you good with Flash?
    http://board.flashkit.com/board/showthread.php?t=756627
    Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com

  • Horizontally scrolling page views and vertically scrolling table views

    This may be a feature request, and I'm trying to figure out if I'm trying to do too much in an iPhone app, but I want to have an outer view scroll horizontally with pages - easy to do with the UIPageControl and UIScrollView.
    Within each page, however, I have a view (or nested views). In one of those views, I want to be able to scroll vertically (it's a table view) - but I can't! The message never gets down to the tableview because it's eaten on top - or at least it seems like it. It looks like I can do it in the simulator, but not on the phone.
    Is this doable?

    "Iain71" <[email protected]> wrote in
    message
    news:g6kj3r$s5p$[email protected]..
    > This is the sort of thing I've seen on a few sites, and
    wondered about
    > before.
    > Sometimes they can look a bit overboard, but I've just
    seen one on this
    > site
    > that looks pretty well done, and doesn't take over the
    page :
    >
    >
    http://www.timesatlas.com/Pages/Default.aspx
    >
    > It's the bit below the main atlas pic, with the
    different versions of the
    > atlas.
    >
    > Does anyone know of any extensions, or tutorials for
    recreating something
    > along those lines? (Not sure if it's Flash or not?)
    I'm pretty sure Project Seven (www.projectseven.com) has an
    extension that
    does almost exactly that.
    Patty Ayers | www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet

  • Horizontal scroll bar in maintenance view

    Hi all,
             i have a ztable  which has ony two fields id and description. Maintenance view exists for same.
    Can anybody suggest me how to set 'HORIZONTAL SCROLL BAR' for this view as sometimes description is too large and not able to see the description. plz suggest me.
    plz help.
    thnks n Regards,
    Ashmita Singh

    You can do one of two things:
    1. When you are at the maintenance view, manually drag the right edge of the columns to make them narrower.
    2. If you can change the maintenance view, go to the function group with the same name as the maintenance view (which should be the one automatically generated, such as from SE54), and then find the screen in the function group. Open the screen, click "Layout", and the SAP GUI painter will display the screen layout. Over there, click the upper-left corner of the table, and the control TCTRL_<your_view_name> will be selected. Open the "attribute window" or press F2, and then you can set the number of Fixed Columns. Try reducing the number and re-test the effect.

  • Horizontal scrolling in a JTable with fixed-size columns

    Hello,
    I have come to a roadblock concerning the following issue. Perhaps someone can share their ideas...
    I have a JTable with three fixed-size columns. I implemented a JScrollPane with vertical and horizontal scrolling. However, the text inserted into the last column is too long to fit in the specified column width. I would like to be able to scroll the table so that I can view all of the text in the last column. Right now, the text cuts off and ends with three dots (...). Is there a way in which a horizontal scroll bar can be implemented to view all the text in the last column?
    Here is a portion of my code:
    num_of_rows_Table2 = (int) Math.pow(3, num_of_vars);
    String[] colunmNames_Table2 = {"Decimal Identifier", "Ternary Identifier", "Cancellation of nonimplicants"};
    dataModel2 = new DefaultTableModel(colunmNames_Table2, num_of_rows_Table2);
    SpaceOfTermsTable = new JTable(dataModel2);
    for (int z = 0; z < num_of_rows_Table2; z++)
    SpaceOfTermsTable.setRowHeight(z, row_height);
    SpaceOfTermsTable.setBounds(new Rectangle(x1_Table2, y1_Table2, width_of_pane2, height_pane2));
    SpaceOfTermsTable.getTableHeader().setReorderingAllowed(false);
    for (int i = 0; i < 2; i++)
    TableColumn col = SpaceOfTermsTable.getColumnModel().getColumn(i);
    col.setMinWidth(colwidth_Table2);
    col.setMaxWidth(colwidth_Table2);
    col.setPreferredWidth(colwidth_Table2);
    TableColumn lastcol = SpaceOfTermsTable.getColumnModel().getColumn(2); lastcol.setMinWidth(lastcol_Table2);
    lastcol.setMaxWidth(lastcol_Table2);
    lastcol.setPreferredWidth(lastcol_Table2);
    SpaceOfTermsTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    scrollPanel2 = new JScrollPane(SpaceOfTermsTable, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
    scrollPanel2.setAutoscrolls(true);
    scrollPanel2.setBounds(new Rectangle(x1_Table2, y1_Table2, width_of_pane2, height_pane2));
    Thanks in advance for all of the help!

    Hi, I hava a similar problem than yours - can you tell me how you sorted out yer's?

  • Set the horizontal scroll bar for the OOTb document library view

    hi all,
     Am facing an issue in my sp portal.We have designed and developed the portal with OOTB document library views for site columns also. Going to enable the doc lib view. but  we have some  35 columns in eeacha nd every document
    library within our sub site. But if an end user wants to see the last column then he needs to scroll. but, since  then my master page has fixed width, the top corner will be seen as blank. would like to know how can we set horizontal scrolling
    in this doc lib view .
    Das

    Hi,
    According to your description, my understanding is that you want to set the horizontal scroll bar for the document library when the last column postion exceed the fixed width.
    I suggest you can try to use Jquery to set the width attribute of the menu bar dynamically if the document library width exceeded. You can add the Jquery or CSS style using SharePoint Designer under the PlaceHolderMain tag of document
    library page. Also, you need to find the div id in your environment using Internet Explorer.
    More information:
    http://sharepointpromag.com/sharepoint-development/sharepoint-branding-101-branding-master-pages
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • No horizontal scroll bar on the Jtable. In order to see long column.....

    No horizontal scroll bar on the tJable.
    In order to see long cell data we have to eliminate other columns of the table.
    I need an horizontal scroll bar on the JTable if the data in a cell is longer.
    Could somebody help me out?
    Thanks in advance.

    in the jtable use following method :
    myTable.setAutoResizeMode(this.AUTO_RESIZE_OFF);
    KR,
    Jan

  • 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 not working  in aperture split view

    I had recently upgraded to mountain lion and the newest aperture, but I noticed a problem with horizontal scrolling in aperture split view.  I am currently using a magic mouse, and it scrolls just fine within other applications except in aperture split view.  (it doesn't go to the next picture when I gesture  left and right)  if I do it many times, it will change to the next picture but then stops scrolling again.  I had tried to use a trackpad and it is better but I have to do it slowly and occationally it just doesn't work.  It only happens only in Aperture and not in safari or other applications.  Does anyone know the solution to this problem?  Any little help is greatly apprecitated

    The recent Aperture update disabled the "Scroll to navigate photos in the Viewer" option.
    You may need to reenable it in the Aperture general preferences.
    Regards
    Léonie

  • ALV freeze Columns in Horizontal Scroll

    Hi All,
    I am using ALV object cl_gui_alv_grid-> set_table_for_first_display and want to freeze the first three columns when doing horizontal scroll.
    I am passing it_fieldcatalog-fix_column = 'X' for the first three column fields but these columns are not being freozen when I do Horizontal Scroll.
    Kindly let me know what else I need to pass or any alternative way to achieve this in ALV.
    Thanks in advance.
    Vijoy

    Vijoy,
    Making the FIX_COLUMN to X should have solved your problem. As a work around, make those columns as KEY columns in the fieldcatalog and see if it works that way.
    I hope you don't have any other column in front of these columns which is NOT fixed. If yes, that it will not work.
    Regards,
    Ravi
    Note : Please mark the helpful answers and close the thread if the question is answered
    Message was edited by: Ravikumar Allampallam

  • Scrolling horizontally in Code view with tilt-wheel mouse.

    I'm having an issue with scrolling horizontally via my mouse's tilt-wheel, side-scrolling feature.  I'm using Dreamweaver CS6 in WIndows 7, but perhaps the bug may apply to CC as well.
    When I scroll sideways, the scrollbar moves, but it loses all of it's styling (gradient effect and draggable icon) but the view content does NOT move at all.  After side-scrolling, if I click anywhere in the Code view, the styling resets and the content tries to reconcile with the scrollbar's location, and the view breaks, like this:
    Scrolling vertically past these lines and back resolves the text breakage.  But, horizontal scrolling is still a pain unless I make the effort to drag the scrollbar with my cursor.
    I've considered it being a driver issue, so I reinstalled them and restarted.  I've installed legacy versions and restarted.  No dice.
    Has anyone else experienced this?  Why is tilt-wheel side-scrolling different than clicking the right arrow button?  Any help would be appreciated!

    Thanks Jon.
    But, I'd rather not word-wrap.  I see plenty of how-to's for word-wrapping, so I'm not sure if I'm really alone in wanting to visually maintain longer lines, or whether hardly anyone else has tilt-wheel issues, or that they don't find it worth posting for help about. 
    Hm.  I'll keep looking for a solution for a while longer.

  • Horizontal scroll-bar on folder view

    This is a big problem for me, my folder structure is very complex and has lots of nested, long-named folders. Even maximizing the left sidebar size, I still can't view the most nested ones!!
    2 solutions:
    - add a horizontal scroll-bar
    - (Picasa like), make some folder temporarily the top one (don't like this one personally)
    and by the way, the nesting margin should really be reduced!
    thanks
    Luca

    I agree, but in the mean time, Jeffrey's Configuration manager allows you to make the panels arbitrarily wide:
    http://regex.info/Lightroom/Config/

  • N Why no scroll bar in column view?

    When in column view, the finder window extends past the bottom of my screen, yet there is no scroll bar and I cannot reposition the window so I can see the bottom or even resize it since the bottom of the window is off my screen. If there is a scroll bar, it must be so far down it's off the screen too. How do I fix this?

    Hello A:
    Try trashing the preference file com.apple.finder.plist and restarting.
    Barry

  • Locking the first column in advanced data grid on horizontal scrolling

    Hi All,
    My requirement is to freeze or lock the first column in the advanceddatagrid from scrolling on horizontal scroll event.
    The column should always remain in the left hand side of the grid.
    I tried with lockedColumnCount property of the advanced grid. But it is not working.
    Could anyone help me please with code examples

    I am able to do the above by using the method which passes
    the sort information to data provider. But now the problem I am
    facing is I cannot use event.preventDefault(); along with that
    method. If I use event.preventDefault(); then it does not show the
    descending arrow on the column, nor does it sort on multiple
    columns.
    But if I do not use event.preventDefault(); then the problem
    I am getting is it remembers the previous sort order for a
    particular column. eg. If I sorted on col A (desc)+colB and now I
    sort on colC. Again if I click on col A, the data provider sorts on
    colA ascending shows it and then the grid refreshes sorting on col
    A but in descending order.
    Does somebody know how to get around this problem?

  • How do I view the Horizontal Scrolling bar and status bar at the bottom of the screen. I can only see the top menus, toolbars and vertical scroll bar?

    Before the most recent upgrade, the bottom horizontal scrolling bar and status bar appeared on my screen. Now since upgrading, I cannot see the. Anyone ideas how to restore them?

    If you haven't already, you could force-quit Quicktime by using the menu option from the desktop (finder) and choose Quicktime.
    Not sure what you have frozen on the screen, be it a failed movie, or some unusual screen shot. If you can find by date (created) you may be able to look for .mov or quicktime suffix name or other video file content to delete it.
    And you may have to restart your computer and perhaps run repair disk permissions from Disk Utility's first aid on the hard disk drive in your computer.
    Not sure if all that would help now, but it is something a few days late...!
    Good luck & happy computing!

Maybe you are looking for

  • How to show catalog items with Approval Status:Pending in a Content Search Webpart

    How to show catalog items with Approval Status:Pending in a Content Search Webpart using cross site publishing. Thanks in advance.

  • Database Links Help

    I want to create a dynamic PL/SQL Portlet which displays an image based on a value in a remote database. Can someone explain how to use Database Links in Oracle Portal and then how to create the public synonym so it can be accessed in the SQL? I've t

  • Message Bridge - from Topic to Queue

    Hi all,           Can I set up a message bridge in Weblogic 8.1 sp3 to "redirect" message from a topic to a queue? i.e. The source is set to Topic while the target is to queue consumed by a MDB located in the same instance as the queue.           I t

  • Best option for bb and phone, i have moved but don...

    Hi I have moved into a friends house for four months but dont need to move my existing bb and phone as i can use theres. My question is whats the best option to keep my current package with bt without moving it or cancelling it. Also i dont want anyo

  • Installing Windows from virtualisation onto bootcamp partition - formatting problem!

    Hello! I hope I can describe this well enough. I'm in the situation of trying to install Windows 7 from a .iso I've made as my superdrive is totally dead. I'm running 10.7.4. Currently what I've done is basically the first chunk of steps from this po