Scrolling large list in scrollable page

Hi,
I would like to scroll with the mouse wheel a large list, in
a scrollable page. Actually, when I scroll in my list, the list is
scrolled but the page too. How to scroll just the list?
Thanks for advanced.

is that because your list container too small so the mouse is
easily out of the list and scroll the page?
Maybe you can set verticalscrollpolicy of the page OFF while
the list is focused

Similar Messages

  • Set a "mobile" scroll behaviour to a scrollable List on a desktop app

    Hi,
    We're looking for some help on a Flex 4.5 AIR app deployed on a touch desktop environment.
    We're developping a kind of a kiosk app originally made for desktop machines (mouse). Recently we've tested it on a touch screen used with a stylus or fingers (not a mobile device but a touch screen connected to a PC), everything run smoothly without any changes as the touch events on the screen are interpretated as a mouse interaction by the driver.
    So everything works well but of course the UI is not designed to be manipulated with fingers and especially the behaviour of List scroll is not adapted : the desktop AIR app displays vertical scroll bars and buttons to scroll the list up and down but usually on a touch screen you scroll list by swiping it (touching an element and swiping up or left, the element is not selected because you've moved the finger before moving it up)
    I know that this behaviour for a Scroller exists in flex 4.5 within a "Mobile Project" (apparently it is possible to compile a "Mobile Project" into a desktop AIR app...?)
    So my questions are :
    1) Is it possible to set up this "mobile" behaviour of a scrollable List to a desktop AIR app ?
    2) Generally speaking, is it possible to set at the installation (by configuration or so) the "style" of the app (by "style" I mean the size and the behaviour of the components in order to be manipulated by a mouse or by a finger). It seems possible as the logic behind the component doesn't change, just the size (if it is a button and/or the bahaviour of the scroll if it is a List, and so on...). Is it something related to a Skin? or maybe a Theme?
    3) What the difference between a "desktop AIR app" and a "mobile app" in Flex Builder 4.5? (both project seems to have the same compiler's arguments, etc...)?
    Mich

    Hi there,
    Yes I use the mx datagrid because I need the drag and drop handling. The spark datagrid does not support this yet :-(
    So I can write my own drag and drop handlers for the spark datagrid or a touch scroll function for the mx version.
    I really think that componenents in Flex should be backwards compatible...
    Thanks

  • Scroll list down by page wise using mouse

    hi experts,
      how   can we scroll a list page wise  rather than line wise using scroll button of  mouse .
      my requirement is to generate a list consisting of 38 lines per page and each set of 38 lines
      should come in a new page that i have done using new-page, but problem is when i scroll
      down a list using mouse scroll button next page should be displayed rather than scrolling
      line by line . just like using pagedown key of the keyboard,
    thanks in advance.

    I think this is not possible, I don't think controlling the mouse operation is possible

  • 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

  • Best way to create a scrolling expandable list of checkboxes

    Stupid question time: I want to create a list of checkboxes where there can be more than will fit into the fixed space in the UI so I want it to scroll as necessary. I also need to add and remove items to reflect changes in external factors.
    I've tried to use the Radio Buttons item (which seems to be an NSMatrix that contains NSButtonCell objects) but I'm having problems (added items disappear off the top/bottom of the NSMatrix area, they seem to revert to the radio-button even if I set the 'prototype' to be a checkbox, I cannot get it is scroll).
    I'm sure that this is a standard thing to have (a scrolling dynamic list of checkboxes) but I'm not sure how to create this. It's almost like the pop-up list in the combobox control but I want it on the screen the whole time.
    In Windows I would simply use a CheckedListBox control - what is the equivalent in Cocoa?
    Thanks
    Susan

    For what it's worth...
    I kinda sorta got this to work using an NSMatrix instead of an NSTableView. Clicking the checkboxes afterwards only seemed to "select" the checkbox (ie put a focus ring around the checkbox) rather than actually checking or unchecking the checkbox. So you might still need code similar to what you've already done for your table view.
    Here's what I did. This was in Leopard with Xcode and IB v. 3.0, but it may be somewhat similar in earlier versions of IB.
    1. Drag a single checkbox into your window.
    2. While your checkbox is selected go to the menubar and select "Layout -> Embed Object In -> Matrix".
    3. The inspector window should change to "Matrix attributes"
    4. Use the "Cells" attribute counters in the inspector window to add more rows (or more columns if needed) to your matrix. This should add more checkboxes to the matrix.
    5. Add rows and/or columns until you get basically the number of checkboxes that you'd like to be able to see in your scrollable area.
    6. Now while your matrix is selected go to the menubar and select "Layout -> Embed Objects In -> Scroll View"
    Initially the scroll view will not show a scrollbar (because your scroll view was sized to encompass all of the current checkboxes). But if you click into the scroll view so that the embedded matrix becomes selected then you can use the "Cells" counters in the inspector window again to add some more rows or columns of checkboxes... and the scroll bars of the scroll view will become active.
    If you don't know the total number of checkboxes beforehand then you can do something like this in code at runtime:
    [theMatrix addRow];
    [theMatrix sizeToCells];
    This assumes that "theMatrix" is an outlet to the matrix. The addRow method will add a row to the end of the matrix but there are other methods that will allow you to add a row at a specific index. The "sizeToCells" seems to be required to get the scroll view to notice that the matrix has changed size and it's scroll bars may need to be adjusted.
    Steve

  • Fastest way to search large list

    User will enter their account number into a web page. I then get a list from my database (will be about 100,000+ entries), and search to see if the account number is present, and forward to a new web page based on the results of the search.
    Any thoughts on the fastest way to search a large list? The list has will have other data in it besides the account number.
    My thoughts:
    1. get the list
    2. sort the list
    3. use binary search?
    List accountNumberList = getTheList();
    Collections.sort(accountNumberList );Message was edited by:
    chet0264

    The first thing that comes to mind is "you should
    learn some SQL".Yeah. Don't retrieve 100,000 entries from the database when you only need 1. Learn how to write a sql statement to retrieve only the account number you want.

  • Working with Large List in sharepoint 2010

    Hi All
    I have a list with almost 10k records in my sharepoint list and based on some business requirement i am binding (almost 6k records) the data to asp.net grid view and this will visible on the home page of the portal where most of the users will access. Can
    someone please guide the best method to reduce the performance inorder the program to hit the SP list everytime the page loads...
    Thanks & Regards
    Rakesh Kumar

    Hi,
    If you are Working with large data retrieval from the content database (SharePoint list), the points below for your reference:
    1. Limit the number of returned items.
    SPQuery query = new SPQuery();
    query.RowLimit =6000; // we want to retrieve2000 items
    query.ListItemCollectionPosition = prevItems.ListItemCollectionPosition; // starting at a previous position
    SPListItemCollection items = SPContext.Current.List.GetItems(query);
    2. Limit the number of returned columns.
    SPQuery query = new SPQuery();
    query.ViewFields = "";
    3. Query specific items using CAML (Collaborative Markup Language).
    SPQuery query = new SPQuery();
    query.Query = "15";
    4.Use ContentIterator class
    https://spcounselor-public.sharepoint.com/Blog/Post/2/Querying-a--big-list--with-ContentIterator-and-multiple-filters
    5. Create a Stored Procedure in Database to get the special data, create a web service to get the data, when create a web part to show the data in home page.
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Scrolling a list in safari on iPad

    I've had my iPad 2 since two weeks after it was released.  I love it a lot.  However, there are several issues of which i'm asking about one of them in this query.  When I go to a site, www.wakerupper.com, to set up a wake up phone call,creating a call involves specifying a date, a time, a telephone to call.  The issue at this point is the time.  In Safari 5.05 on the Mac, if I click the current time value (which defaults to something if never set or to the most recent value otherwise), a dropdown appears with about a dozen or so times at 15 min intervals.  I can scroll this list to further up or down.  I use the mouse wheel, the track pad, or the scroll bars to do this.  After I click the desired time, I can edit it to change if from 7:45 to 7:55 if that is my preference.  So far so good and so far nothing to do with the iPad.
    If I open this page in the iPad 2, it appears much the same.  If I tap on the time, a similar drop down list appears.  I can tap on any visible time to select it.  However, I have found NO WAY to scroll the list up or down to go earlier than it offered or later than it offered.  There is no scroll bar shown. 
    If this were the only site that had this problem, I would be going to that site support.  But I've encounter other cases in iPad 2 Safari (which has been updated with all the latest software updates) a dorp down box with a limited number of choices appear and no means to scroll the list.  I don't know HTML that well.  I'm guessing that some sort of code is used to describe a list box and the two versions of Safari implement it differently but the iPad 2 Ssfari has left out the ability to scroll the drop down list. 
    First, can anyone describe how I could scroll the list in this sitatuion I may have missed it.  If I put my finger on an item and slide it up or down, the entire screen tries to roll up or down not just the drop down list.
    Is this due to the way the page is coded or is it a lack in the implemntation os some HTML feature in Safari for iPad2?
    Thanks,
    Bruce

    Scroll using two fingers.

  • CAML query performance for large lists

    I have a list with more than 10000 items. I am retrieving the items and displaying it in a RAD Grid on my page using CAML query. While retrieving the items, around 1000 records are retrieved due to filter. I have enabled paging in my grid and PageSize is
    set to 25. I have noticed that the load time of my page is very slow as it retrieves all the 1000 records at once.
    Is it possible to retrieve just 25 records for the first page on load. On click on the Next button or Page number it should retrieve the next set of 25 records for that particular page.
    I want to know if there is any way to link CAMl query paging with RAD grid paging
    Any code example would be greatly helpful.

    Hi,
    For pagination in SPListItem use the SPQuery.ListItemCollectionPosition property. 
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spquery.listitemcollectionposition(v=office.15).aspx
    check the usefull urls
    http://omourad.blogspot.in/2009/07/paging-with-listitemcollectionposition.html
    http://www.anmolrehan-sharepointconsultant.com/2011/10/client-object-model-access-large-lists.html
    Anil

  • Browsing through a list of several pages - best algorithm?

    i have a web application where you can view a list of records. the resulting set is divided into pages, so that the user can browse (previous, next) through the list. the jsp page for displaying a list is pretty simple, it get's a vector from the data bean and displays the elements within a lower and upper index. this solution is simple and easy and has the advantage, that the vector with (all) items can easily be sorted by the user by clicking on the table column header of the page.
    but this solution is not suitable for a big result set. my question is, what is the best solution for displaying lists in separate pages and just load the records that are necessary to display one (the current) page?
    one idea is, to have a JDBC result set open on the server and do a "fetch next rows" on each page flipping forward - its questionable if this is faster. you also have to hold a JDBC result set open for each user viewing a list. and the further the user browses, the bigger the data result set (vector with items) gets (remember: the user can also browse backwards, and there is no JDBC fetch previous rows so you have to remember the already fetched rows).
    any other ideas? thanks in advance!

    You can use a scrollable result set. This will give you direct
    access by row.
    http://developer.java.sun.com/developer/Books/JDBCTutorial/index.html
    There is no perfect solution, though. Every case will be a balance
    of storing a vector on the server vs keeping a result set on the server
    vs storing data on the client vs retrieving subsets of data.
    Each has overhead in either storage space, page loads from the server,
    or database access. You will have to decide what is best for your
    application.

  • Show Related Resources and Large Lists

    I have a site collection with large lists (> 5000 items). The site content and structure tool has a neat feature to show resources related to a given resource, however this is not available for large lists because the list view shows nothing.
    Is this function available anywhere else in SharePoint? I want to be able to select a document and find out which web pages it has been used in as a link in web content, for example.

    Hi Heley,
    According to your description, my understanding is that you want to get the related resources of the document in SharePoint.
    Per my knowledge, there is no other OOB way to get the related resources of a document in SharePoint except Content and Structure feature.
    However, we can get all related resources of a document programmatically. We can do it by using BackwardLinks property and ForwardLinks property of SPListItem object.
    Please refer to the link below:
    http://onlinecoder.blogspot.com/2011/11/find-all-references-to-master-page-or.html
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Creating a scrollable page

    trying to create a scrollable table of contents for the iPad3
    I built my page at 1536 x 12000
    thinking that i could scroll vertically as 1 continuous page.
    but it's telling me that the aspect ratio is off.
    what size should I make it so that the aspect
    ratio jives with the folio builder??
    this size worked for the ipad 1 and 2. kinda weird.

    Make sure that you select a Smooth Scrolling option when you create or import your article.

  • Create a view in SharePoint UI to paginate through data on a large list.

    Some of my users are facing a usability issue with SharePoint.
    The problem seems to be that if a list exceeds the threshold. SharePoint gives them the error ... but doesn't allow them to fix it.
    So when the list threshold is exceeded... the user cannot go into the list at all to create a view or to delete old records. 
    They must call in the system administrator who can open bigger lists... but in large companies system administrators are not easily accessible.
    How can user fix the problem himself/herself in case the threshold has increased?
    The second issue is that I want to create a view on a large list that shows 50 items at a time. I don't want to filter (like year = 2013 or age < 10) I don't want to filter but I want to reduce the number of records fetched by means of pagination. Is
    this possible on a large list. (I found many blogs on the web with people using XSLT web part and DVWP..... but none of them work when the list has exceeded threshold). I want a very simple view on the list which takes only 50 items at a time and works with
    large lists.
    val it: unit=()

    In order to handle large lists (over 5000 items) you need to select the fields that you what to show in the view and set them as indexes , you can do it through list settings-> set indexes.
    it might be a problem in an allready large list 'but in a small one - its pretty quick.
    and to create a view'and set the pagination there - use the create view of the list itself and not a dataview webpart or other tool.
    I have tested it in a project of mine in a list of 15000 records and it works , although you can not filter and sort on the view itself but on the view definitions only.
    if the list is bigger then 20000 items - > it is most desireable not to use sharepoint .
    Shlomy

  • Ever since installing firefox 4, i can no longer use my finger type joystick on my keyboard for automatic scrolling up and down a page. Any suggestions?

    I have three buttons below my space bar which function, basically like the left-click, right- click buttons on a mouse but the middle button, when held down, should allow me to move the joystick up or down to continuously scroll up or down a page. Now, it doesn't work. This is a function I really like. If I cannot resolve this, how do I remove Firefox 4 and go back to my previous edition of Firefox?

    Thanks for the suggestion - i checked and scrolling is activated. Which fits with the fact that it works in every other application apart from firefox. Any otehr ideas?
    thanks os much!

  • How do you disable the automatic list detection in Pages 5?

    How can you disable or deselect the automatic list detection in Pages 5?  I want to stop the auto numbering.

    Menu > Pages > Preferences > General > Editing: uncheck Automatically detect lists
    Peter

Maybe you are looking for