Display poplist from top of list when clicked?

I have a list item, a poplist, with a number of items which cannot all be viewed at the same time so the user has to scroll through the list to find the required item. My problem is, when displaying the list it always shows the last n entries so the user has to scroll up, but I would rather it showed the first n entries so the user could then scroll down. I want to do this as the list is in order of precedence so I would rather the user saw the highest precedence first and as they scrolled down the precedence got lower.
Any ideas how I could achieve this?
Thanks
Richard

Hi Frank
If I have a list as follows:
a
b
c
d
e
The poplist will display c,d and e first so the user would have to scroll up to see a and b. I would like it to display a,b and c and then have the user scroll down to see d and e. I would like to keep the order as it is as it makes sense to the user to scroll down to get to a lower precedence item.
I hope you get what I mean. I don't think there is a solution to this as I think (?) its a windows thing.
Richard

Similar Messages

  • How to display the details of particular order when click on button in sapui5

    Hi Experts,
        How to display the details of particular order when click on button in sapui5?
    I Have a requirement that is i want display all the list of orders coming from backend as shown in image below
    then in that i have a button when i press the button  it need to display the details of particular order as shown in image below
    Please help me .
    Thanks & Regards
    chitti

    Does anyone know how to display the index of current desktop?
    Brute force - - I have written the number of the Desktop directly onto the wallpaper picture I am using for each Desktop  (easy to do with Preview).
    All Desktops are using different wallpaper photos, so they are easily recognized by the color scheme, and in the upper left corner is the number.
    Regards
    Léonie

  • I have a problem choosing artist from my artist list when I will put music on my iPad from my iMac. I can only see the 25 first artis and it is not possible to scroll down the list

    have a problem choosing artist from my artist list when I will put music on my iPad from my iMac. I can only see the 25 first artis and it is not possible to scroll down the list

    Hi stig68,
    If you are having grouping issues with compilation albums in iTunes, you may find the following article helpful:
    Apple Support: Why aren't songs with the same album art grouped together?
    http://support.apple.com/kb/TS1468
    Regards,
    - Brenden

  • Unselect Spark List when clicking in the empty area?

    Hi there.
    I'm wondering if it's possible to unselect a Spark List when clicking in the empty area?
    I've attached this function to the list's click event:
    protected function list_clickHandler(event:MouseEvent):void
        list.selectedIndex = -1;
    But the list gets unselected even if I click on a item in the list. Is there a way to prevent the event when clicking on an item?
    Thanks a lot!:)

    Hi
    It's because the event bubbles all the way up. You have to explicit stop the event doing so.
    You can do it within an "item_clickHandler(ev:Event)" where you can stop propagation via the Event stopImmediatePropagation or stopPropagation methodes...

  • Error while deleting the Products from TOP N List

    Hi ,
    I have been using FM "CRM_PRP_PROD_I_UPDATE_DU" to delete products from the TOP N List but while executing  i am getting an error "Error upon posting object 'PRP_PROD_I' / table CRMM_PRP_PROD_I'". Kindly let me know where am i going wrong.
    Thanks & Regards,
    Shwetha.

    Hi......
    I think in the ODS setting Unique Data Records checkbox is ticked........if so.........The DataStore object can be used for loading unique data records...........If the loaded request does contain data that is already in the DataStore object, activation of the request will lead to an error.
    Find the request in SE16>>RSICCONT table .........and try to delete there....it may work........
    Check this.....
    u2022 Note 1007717 -Deleting from Data Store object: Termination w/o log
    u2022 Note 998704 - Deleting req from DataStore obj: Status at end of processing
    u2022 Note 1037507 - System Termination when you delete from DataStore objects
    Regards,
    Debjani.....

  • Display hidden fields in output list when submitting a report from another

    I have a report A that is submitting another report B and exporting the list to memory. Report B is a standard report and cannot be executed on its own.
    SUBMIT ReportB          
               WITH p_select = p_select
               EXPORTING LIST TO MEMORY
               AND RETURN.
    CALL FUNCTION 'LIST_FROM_MEMORY'
          TABLES
            listobject = t_list
          EXCEPTIONS
            not_found  = 1
            OTHERS     = 2.
        CALL FUNCTION 'LIST_TO_ASCI'
          TABLES
            listasci           = t_ascitab
            listobject         = t_list
          EXCEPTIONS
            empty_list         = 1
            list_index_invalid = 2
            OTHERS             = 3.
    The output of report B displays an ALV report, default layout of this ALV has a number of hidden fields. So when I am exporting the list to memory, the returned internal table finally extracted (t_ascitab) has only the default fields and not the hidden fields.
    The default layout of the standard report B cannot be altered (as per requirement).
    Is there any way the hidden fields of the output of report B can be returned to report A??

    Hi ,
    You have to  Set layout of report  B as per your requirment  .
    There is  also other method 
    You can include Reportb   in main report and access  internal table  data  for further processing  .
    regards
    Deepak.
    Edited by: Deepak Dhamat on Aug 25, 2011 7:59 AM

  • Adding an item to a List when clicking a WebPart Properties 'OK' button

    Hi all,
    I wonder if someone can help me. Im new to SharePoint Programming but learning slowly. 
    I have a superb Web Part downloaded from Codeplex which essentially is a Countdown Timer in jQuery. (spCountdown) The code itself works perfectly however I want to tweak it, in what I thought would be a relatively easy thing to do.
    In the Web Part properties of the solution, there is a textbox where you enter the Date/Time which you wish to set the countdown timer. When I click 'OK' to submit the WebPart, I would like the date value in the textbox to be added to a List as a new List
    item. I've got the code to add the List item (or what im think is the correct code) but what I cant do is get the function to execute when the WebPart 'OK' button is clicked. 
    Now, I have downloaded the source code which is available but I cant fathom how to hook the 'Update List Item' code onto the onclick event of the button (as I cant find an onclick event!). Any help to advise me what to do would be appreciated.
    My code to add the date to the new List:
    // create item in Deadline Configuration List
    using (SPSite oSiteCollection = new SPSite(SPContext.Current.Site.Url))
    using (SPWeb oWeb = oSiteCollection.OpenWeb())
    SPList oList = oWeb.Lists["DLConfig"];
    SPListItem oListItem = oList.Items.Add();
    oListItem["Title"] = "Deadline Date";
    oListItem["TaskDueDate"] = new DateTime(WebPart.TargetDate.Year, WebPart.TargetDate.Month, WebPart.TargetDate.Day);
    oWeb.AllowUnsafeUpdates = true;
    oListItem.Update();
    Original WebPart Code:
    SPCountdownWebpart.cs
    using System;
    using System.ComponentModel;
    using System.Web.UI.WebControls.WebParts;
    namespace SPCountdown.SPCountdownWebPart
    [ToolboxItemAttribute(false)]
    public class SPCountdownWebPart : WebPart
    // Visual Studio might automatically update this path when you change the Visual Web Part project item.
    private const string _ascxPath = @"~/_CONTROLTEMPLATES/SPCountdown/SPCountdownWebPart/SPCountdownWebPartUserControl.ascx";
    protected override void CreateChildControls()
    var control = Page.LoadControl(_ascxPath);
    if (control != null)
    ((SPCountdownWebPartUserControl)control).WebPart = this;
    Controls.Add(control);
    [Category("Countdown Settings"),
    Personalizable(PersonalizationScope.Shared),
    WebBrowsable(true),
    WebDisplayName("Target Date/Time"),
    WebDescription("Please enter the target date/time for countdown.")]
    public DateTime TargetDate { get; set; }
    SPCountdownWebpartUserControl.cs
    using System;
    using System.Web.UI;
    using Microsoft.SharePoint;
    namespace SPCountdown.SPCountdownWebPart
    public partial class SPCountdownWebPartUserControl : UserControl
    public SPCountdownWebPart WebPart { get; set; }
    public SPCountdownWebPartUserControl()
    PreRender += SPCountdownWebPartUserControl_PreRender;
    void SPCountdownWebPartUserControl_PreRender(object sender, EventArgs e)
    // parse date from properties
    var targetDateString = string.Format("{0},{1},{2},{3},{4},{5}",
    WebPart.TargetDate.Year,
    WebPart.TargetDate.Month - 1, //uses 0-based index
    WebPart.TargetDate.Day,
    WebPart.TargetDate.Hour,
    WebPart.TargetDate.Minute,
    WebPart.TargetDate.Second);
    // js sources
    const string jqueryScript = "<script type='text/javascript' src='/_layouts/SPCountdown/js/jquery-1.10.2.min.js'></script>";
    const string countdownScript = "<script type='text/javascript' src='/_layouts/SPCountdown/js/jquery.countdown.min.js'></script>";
    // create javascript implementing countdown
    const string jsCountdownFormat = "<script type='text/javascript'>$(function () {{var targetDate = new Date({0});$('#defaultCountdown').countdown({{until: targetDate}});}});</script>";
    var jsCountdown = string.Format(jsCountdownFormat, targetDateString);
    // register client scripts
    var cs = Page.ClientScript;
    if (!cs.IsClientScriptBlockRegistered("jQuery"))
    cs.RegisterClientScriptBlock(
    GetType(),
    "jQuery",
    jqueryScript);
    if (!cs.IsClientScriptBlockRegistered("jsCountdownScript"))
    cs.RegisterClientScriptBlock(
    GetType(),
    "jsCountdownScript",
    countdownScript);
    if (!cs.IsClientScriptBlockRegistered("jsCountdown"))
    cs.RegisterClientScriptBlock(
    GetType(),
    "jsCountdown",
    jsCountdown);
    protected void Page_Load(object sender, EventArgs e)
    Can anyone help me with where I need to implement my code to get the List Item to be created when the Web Part properties are set?
    Thanks in advance.
    Rick Lister
    -=Stylus=-

    Hi,
    Please refer below link regarding web part custom properties,
    I think you need to write code under ApplyChanges() Method.I am not sure. Just try it once.
    http://sharepointkitchen.blogspot.in/2014/10/custom-web-part-properties-approach-2.html
    Don't forget to mark it as an Answer if it resolves your problem or Vote Me if it useful.
    Mahesh

  • How to extend the selection from cell to row when click one sepecial cell

    The JTable contains a special column to display the line number for each row. When user click on the first column(contains row number), the selection would extend to the whole row(React something like Excel). How can i achieve that?
    And how to achieve that for TableHeader?
    Thanks a lot!
    1|
    #|###########################
    3|
    4|

    Check out this posting for one way to do this:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=594338

  • Importing data from excel  ... when clicking finish button nothing happens

    Version 3.1/32bit version ... I am trying to import data from excel but when i clicki finish button nothing happens. any idea. this used to work fine on the older version?

    Hi,
    Generally speaking, the data import from an xls or xlsx format Excel file works. You need to provide more information about your environment and the Excel file itself -- size, data types of the columns, number of worksheets, etc.
    I recommend running sqldeveloper.exe (not sqldeveloperW.exe) from a command line window. Repeat your import test and see if any stack trace appears in the console. For example, trying to open a 0 byte xls file results in a stack trace like this:
    java.lang.NullPointerException
            at oracle.dbtools.raptor.data.readers.XLSReader.openFile(XLSReader.java: 524)
    ...Regards,
    Gary
    SQL Developer Team

  • Close Top up Window when Click on Add Initiative (SSM)

    Dear sir,
    I am working on SSM 7.5. and now i got error when user Click on ( Add Initiative) the Top up Window is open and than Close Immediately So We can not Create new initiative.
    So is there any solution or Knowledge that can i fix this Error?
    Internet Top up Blocks is Disable already.
    Enable all the Activex in the Intranet and Internet Security already.
    Internet Explorer Version 8
    Thanks for advance.

    Por,
    You might check in Administration > Manage Application Groups. It may be possible that your user is in an Application Group that does NOT have permissions to Create Initiatives. There is a box that needs to be checked to allow members of the group to add initiatives.  Please check to see if that may be the case.
    Regards,
    Bob

  • How do you remove devices from the device list when setting up 2-step verification for your apple id?

    When setting up 2-step verification for my Apple ID, I get a list of devices to verify.  My list has my old iPhone 4 and my old iPad, which I don't have either of anymore.  Is there a way to remove these devices from the list?  Plus, both iPads that are listed don't give any indication of which one is my current iPad and which is my old iPad, so I'm not sure which one to verify.  What should I do there.

    For reference, I figured out how to identify which iPad was which so I could verify my iPad.  I went into the settings on my new iPad and changed the device name, started a iCloud backup (not sure if this was necessary but I wanted to make sure the device name change persited to the cloud) and then was able to see the new name on the device screen for 2-step verification.  Hopefully this helps someone if they have a similar problem.  I still am not sure how to remove old devices from the list.

  • How do I stop sub-tools from automatically showing up when clicking a tool in the palette?

    I must have clicked something or inadvertantly pressed a keyboard shortcut or something because a couple of weeks ago, the sub-tools on the tool palette started popping up without me having to hold down the mouse button for a second. Now when I click a tool (the rectangular marqee tool for example), the hidden tools (eliptical marqee, single row etc.). Please make it stop! It's annoying as hell.
    I'm using PS CS5 on Windows 7.

    I don't believe there's any configuration option that changes that behavior, but I know what you're seeing has been discussed here before.  Unfortunately, it might be difficult to think of the right terms to search for it.   I don't recall if there was a specific fix or workaround found, though.  I'm wracking my brain and I don't remember one.
    Is there any chance you've gotten the right and left mouse buttons swapped?  Do they pop up immediately when you click the right mouse button (as they should)?
    Have you reconfigured your mouse double-click speed or any other mouse parameters recently?
    Do you have an alternate mouse you can try?
    Have you tried clearing your Photoshop preferences (by pressing and holding Control - Shift - Alt immediately after launching Photoshop)?
    -Noel

  • ATV3 disappears from Airplay devices list when in sleep mode

    My ATV3 started to disappear from Airplay available devices list in iTunes each time it goes in sleep mode. It worked fine until a couple of day ago.
    I have also an ATV2 in another room and it's always visibile in iTunes, even if in sleep mode.
    Any suggestion?
    Thx

    Alley_Cat wrote:
    Jester68_Italy wrote:
    I would say that something happened with iTunes Festival update.....
    Unlikely as it wasn't a proper frimware update, just new content material detected via the internet.
    AC
    You're right, but it's the only change I noticed. I also tried a complete restore of firmware but didn't work

  • Displaying data from one data set when a field is null in other data set

    Hi All,
    I have a report where I need to show some columns from one data set(Ex: SsOpportunity) ....... when there is no data in a column (Ex: "Petrofac-ProductLine") in other data set (Ex: SsRevenue) in one table. I have another table which shows data from SsRevenue when there some data in "Petrofac-ProductLine" column.
    The first table is not working for me. Kindly suggest me where to specify the condition.
    Thanks in advance,
    Imtiaz.

    Will it be possible for you to send me a sample xml and RTF?

  • Font size of address list when accessed from a new message...

    Ok, here's the issue, a friend of mine has trouble reading the rather small display size of the address list when accessed from within mail (the small quick box that appears). I can't seem to find how to make it larger anywhere. There is a setting from within Address Book, but this changes the display size just for when you access it directly, and not from within mail. Any ideas peeps?
    Ta xx

    the only changes you can make with regards to viewing/selecting font size and style are in mail>preferences>fonts & colors.
    hope this helps

Maybe you are looking for

  • Posting date and billing date changes on release to accounting

    Hello, I wants to change invoive billing date (VBRK-FKDAT) automatically with current system date (SY-UDATE) when release to accounting invoice. Because always, our posting date (BKPF-BUDAT) on accounting document) must equal to current system date (

  • Freeze loses audiobook license on zen v p

    my zen v + freezes a lot. when it does, it loses the netlibrary audiobook license for the books i have downloaded. no problems on playback until it freezes. books are still there, but no license. have twice replaced the firmware with the latest. stil

  • How to transfer purchased and other music onto the itunes library

    I was just wondering how do i  transfer new purchased music nd other music onto itunes library

  • ThinkPad X240 missing WLAN drivers on Windows 7 64bit Enterprise

    Hi, I got first X240 to our company. I have had serious problems to install drivers into operating system. All Windows updates are up to date, thinkvantage system update has been run numerous times. Unfortunately, I had to install all thinkvantage pr

  • Moved to another country

    ... but I still have an active itunes match subscription (until Nov 2013) and I cannot change the country unless I cancel itunes match. Is there no way to continue/keep exising itunes match whilst changing the country???? This is really not user frie