Form Option Value - Move scroll bar to selected or move data to top

I have a multiselect <cfselect> form element that has 20 or so entries and five are visible.  The entries are dates such as April 2010, April 2009, etc.  I am using something like this to get the date to select the current month and year in my list.
<option value ="#assignMonth#-#assignYear#" <cfif assignMonth EQ myMonth and assignYear eq myYear >selected</cfif>>#monthName# #assignYear#</option>
The problem is the way the list is populated is April 2010 for example requires scrolling.  I either want to be able to move the scrollbar to display the selected month or I want to move the selected month to the top of the list. 
I can't just reorder the data because future months are in there and it will look very strange.
Thank you.

You aren't speaking to the Apple Software development team here.
To do so, you would need to go http://developer.apple.com/ get a free account.
And submit a bug report at http://bugreporter.apple.com/

Similar Messages

  • Horizontal scroll bar muti select list

    Hi,
    I have a multi select list the size of which is restricted doe to other items on the page but some of the values in the lov are wider that the display area, is it possible to get a scroll bar at the bottom so users can scroll alaong and see the few values that are too big.
    Thanks Andy

    The code looks like this. I can really use some help here.
    Label grp = new Label("Group By:");
         buildConstraints(constraints, 0, 2, 1, 1, 1, 1);
         gridbag.setConstraints(grp, constraints);
         add(grp);
         grplist = new List(4, false);
    buildConstraints(constraints, 1, 2, 1, 1, 1, 1);
         gridbag.setConstraints(grplist, constraints);
         for(i = 0; i <= number_of_fields; i++){
              grplist.add(data[0]);
    add(grplist);
         data6 = new Checkbox("6 sigma data",false);
         buildConstraints(constraints, 1, 12, 1, 1, 1, 1);
         gridbag.setConstraints(data6, constraints);
         add(data6);
         show = new Checkbox("Show values",false);
         buildConstraints(constraints, 1, 13, 1, 1, 1, 1);
         gridbag.setConstraints(show, constraints);
         add(show);
         aver = new Checkbox("Plot Average",false);
         buildConstraints(constraints, 1, 14, 1, 1, 1, 1);
         gridbag.setConstraints(aver, constraints);
         add(aver);
         remove(aver);

  • How do I add a form which has a scroll bar?

    Hi there:
    I got trouble when I try to insert an Excel form into PDF. The excel form is quite long,I would like to make a scroll bar for it so that I don't have to roll all way down to the bottom of the page. How can I achieve this function in LiveCycle Designer or Acrobat?
    Thanks a lot!!

    From Tools>Advanced edit, select either the Combo box or the List box. One provides a drop down list that can be scanned and the other provides a scroll list. I suspect that Designer is similar, but I use Acroforms. For Designer, you would need to check that forum unless you have folks here that use it.

  • I have osx 10.6.8 and have lost the side scroll bars on Safari.  When I go into System Preferences there is NOT an "always" option for displaying Scroll Bar.  How do I get it them to display again?

    When using Safari the scroll bars no longer appear on the right hand side.  When I go into System Preferences the option to Always have the scroll bars displayed is NOT there.  How/Where do I go to get these to show all the time?

    It SHOULD be under the General tab in System Preferences:
    (Note that this is a Mavericks screenshot, but it should be there in Snow Leopard, too, if indeed you're still running 10.6.8 as your profile says)
    Clinton

  • How do I add a form which has a scroll bar in PDF?

    Hi
    I would like a form to be added into PDF, however, the form is too long to be put in one page. There are also other stuff in the right hand side, so I wish the form has a scroll bar for the user to drag and browse, just like a web page scroll bar. Is it possible that Acrobat 3D8 support such function?
    Thanks!!!!

    Hi Kentyang,
    This is a 3D specific forum - maybe place this request in the Acro Script forum at http://www.adobeforums.com/cgi-bin/webx?14@@.3bb55d70
    Cheers
    Gazzz

  • Suddenly I can not select anything within the top inch or so of any web page. The scroll bar arrow doesn't work at the top. I don't know what to do. I tried updating my browser but the problem still exists.

    Everything worked fine on Tues. I shut down my system and then on Wed. morning, the problem appeared. Anything within the top inch or so of a webpage is unavailable to select. It is like there is an inch of the page that is dead. It is that way on every website that I visit with Firefox. It does not happen if I use internet explorer, which I do not like and do not want to have to go back to using. Please help!!! My sister in law has the same problem with firefox.

    Hi,
    Please [https://support.mozilla.org/en-US/questions/911441 see this.] You may also want to check if this happens in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode.]

  • Scroll Bar in forms 6i

    I have the following requirement-
    to create a form based on table columns of a customized table as per bissuness requirement and register it onto oracle apps 11i. the table has around 80 columns. so horizontal scroll bar is required to scroll thru all the columns. and it is also required to display 10 records when the form opens. so vertical scroll bar is required to scroll through the records.
    i tried lots of combinations like - seting show scroll bar - yes, scroll bar orientation - vertical on the DataBlock property pellet. and show horizontal scroll bar on the canvas property pellet. the canvas i created from the Datablock is a stacked canvas only.
    please suggest if i am missing anything, as scroll bar is never showing up. neither vertical nor horizontal. atleast m able to see the vertical scroll bar on the canvas layout editor. but its not coming on the Apps Forms window.
    Please Help !!!!!!!!!!!!!!!!!

    hi Sam,
    1. Create your main canvas Type will be CONTENT.
    2. Draw a stack canvas over it
    3. Set the Viewport width and height property of the stack canvas to visible area (Press F4 by selecting it or Right click Properties in Object Navigator).
    4. Set the Canvas Width so u can put all your field in that canvas.
    5. Set the Horizontal or Vertical scroll bar property of the Stack canvas.
    Note: Canvas width and viewport width both are different things. Viewport is the visible area of the canvas
    plz mark it helpful/correct

  • Passing select-options value in method

    How to pass select-options value in method ?
    Example:
    Select-options: carrid for spfli-carrid.
    class cl_myclass implementation.
    select  carrid connid from
    spfli where carrid in carrid.
    endclass.
    Thanks

    Hello Anee
    The coding of this functionality is quite simple:
    REPORT zmy_report.
    DATA:  go_myclass   TYPE REF TO zcl_myclass,
               gd_repid         TYPE syst-repid.
    PARAMETERS:
      p_bukrs   ...
    SELECT-OPTIONS:
      o_kunnr  ...
    START-OF-SELECTION.
      gd_repid = syst-repid.
      CREATE OBJECT go_myclass
        EXPORTING
          id_calling_program = gd_repid.
    And that's how your CONSTRUCTOR method should look like:
    METHOD constructor.  " IMPORTING parameter id_calling_program
    CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
      EXPORTING
        CURR_REPORT = id_calling_report
      TABLES
        SELECTION_TABLE = me->mt_selopts.
    " NOTE: define mt_selopts as instance attribute of table type RSPARAMS_TT
    ENDMETHOD.
    Finally you have to extract the parameter and select-options from MT_SELOPTS.
    Regards
      Uwe

  • How to do implement an Auto scrolling bar in Forms 9i

    Hi,friends
    How can we implement a automatic scrolling bar when we edit item data in block which is so wide.
    I will be appreciated for your response,Thank you!!
    Pls give me some ideas
    Panzhen

    Hi,
    actually this functionality does not work. The reason for this is that Forms9i is Web only and there is no functionality downloaded with the generic Java Applet. For the moment I filed an enhancement request to have this on our radar. Meanwhile, if you need thi sfunctionality you can help yourself by writing a PJC that opens a dialog and performs the action that you want to.
    Frank
    Forms Product Management

  • Regarding Acrobat Professional 8 -  PDF document is framed by scroll bars - much screen blank

    When I open PDF of documents the image appears on the left side of screen and is bounded  on the bottom and right by scroll bars.  I can grab grippys at top of page, pull down and move back up and page fits correctly.
    How can fix this problem?
    TIA

    I believe you have your default view zoomed larger than the size of your document. Try selecting the page icon with the arrows in the toolbar to fit "One full pag"e to your screen. If this is what you're looking for, you can make this your default preference under Edit > Preferences > Page Display category and select "Fit Page" under the Zoom dropdown.

  • Auto generated scroll bars won't go away

    I used the following sample script provided by macromedia to
    create a scrolling text area powered from a text file and css file,
    but when I move on to another part of the FLA., the scroll bars
    generated by this script remain - on top of other layers. How can I
    tell the scroll bars to go away?
    //Copyright (C) 2005 Macromedia, Inc. All Rights Reserved.
    //The following is Sample Code and is subject to all
    restrictions on
    //such code as contained in the End User License Agreement
    accompanying
    //this product.
    //Handle the UIScrollBar - instance in library
    this.createClassObject(mx.controls.UIScrollBar, "my_sb", 20);
    // Set the target text field for the scroll bar.
    my_sb.setScrollTarget(my_txt);
    // Size it to match the text field.
    my_sb.setSize(16, my_txt._height);
    // Move it next to the text field.
    my_sb.move(my_txt._x + my_txt._width, my_txt._y);
    //Note: Download the TXT and CSS files to look at their
    structure. Use the URLs below.
    //load text
    function loadMyText(evt) {
    var loadit_lv:LoadVars = new LoadVars();
    loadit_lv.load("projects.txt");
    loadit_lv.onLoad = function(success:Boolean) {
    if (success) {
    my_txt.text = this.content;
    } else {
    trace("Could not load text file.");
    loadMyText();
    //apply stylesheet
    var flash_css = new TextField.StyleSheet();
    flash_css.load("levi.css");
    flash_css.onLoad = function(success:Boolean) {
    if (success) {
    my_txt.styleSheet = flash_css;
    } else {
    trace("Could not load CSS file.");
    };

    try:

  • How do I reset a scroll bar in a table?

    I have a table that fills up and the scroll bar becomes active in my application. When I start the test over I want to automatically go back to the top of the table as if I scrolled up using the scrollbar. Is there any way to do this? I have been messing with the property nodes and can't seem to find a solution. I am already emptying the table on startup but I cannot get the scroll bar to go back up to the top of the table to see the first few lines of data without doing it manually.

    Use the "Index Value" property. It is the (Row, Col) index of the cell to be displayed in the top left corner of the table.
    =====================================================
    Fading out. " ... J. Arthur Rank on gong."

  • The scroll bar stops moving with the cursor after the frist inch or so down the page, even though the cursor keeps moving as does the page itself.

    This problem started about 4-5 days ago.
    After i scroll down a bit on a longer page, the scroll bar is still near (not at) the top. The page is scrolling at that point based only on me continuing to move the cursor in the scroll bar vertical column - even though not in line with the actual scroll bar itself. Then when I put the cursor on the actual scroll bar the page jumps back up to near the top of the page.
    Thanks for any help.

    Are you using code in userContent.css or Stylish?
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    Firefox Safe mode also disables the customizations in the userChrome.css and userContent.css files.
    See also:
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=787465 bug 787465] - scrollbars don't update sometimes

  • How can i change the window scroll bar property at runtime...???

    hi all ,
    can i change the Window's (Forms window) "Show horizontal scroll bar property" at runtime, i mean programatically... Is there any property which i can set....??
    Thanx in advance
    Regard's
    Prasad

    There is no property there for your required task.
    Hassan

  • I hate the absence of scroll bars and I'm not using Firefox until you fix it

    when I navigate to a new site, the scroll bar is unavailable. If I grab the teeny tiny little corner to resize, the scroll bar becomes available. I want to be able to just grab the scroll bar.

    Thank you very much for your answer, but that's not it.
    I'm using OS 10.5.8. There is no General heading under preferences, and I looked under any settings that could have a scroll bar preference, and didn't find an option to keep scroll bars on.
    There is nothing in Firefox preferences that governs the appearance of scroll bars either. So I remain convinced that it's a setting built into Firefox.

Maybe you are looking for

  • Can't see anything in iWork 08 after installing it on my new MacBook Pro

    I recently reinstalled IWork 08 in my new MacBook Pro.  I was using it on my old MacBook Pro, which my wife now has.  When I open any of the programs, everything is white. If I double click any text that may be in the file, it can be viewed as highli

  • End-to-end layer-2 link with CPE administration

    Dears I am working on a scenario to monitor a CPE in a layer-2 setup. The CPE is connected with the local PE across a last mile with a single vlan from the provider. The customer has purchased layer-2 end-to-end connection from local CPE to remote CP

  • How to update Lot Attributes?

    Hello, I'm trying to update the Lot Attributes. From the Lot Job Updates it is entered through Lot Attributes - > Maintain Lot Numbers (DFF). The base table for the DFF is Mtl_Lot_Numbers. I'm trying to insert values into these attributes by insertin

  • Global Correlation Update Failures

    I've recently turned on Global Correlation but we've failed to update every 5 minutes. PL-ASA-IPS# show stat global Network Participation:    Counters:       Total Connection Attempts = 2       Total Connection Failures = 0       Connection Failures

  • Problem when use clientListener on inputText  in table with arrowUp key

    Hello all, My problem is related to the thread {thread:id=2305768} On a af:table I have one af:inputText with af:clientListener, the type of the clientListener is keyDown. I already use it to get the tab key in order to change the focus on the next l