Scrollbar doesnt appear without clicking on the listbox

Hi Guys,
I have a very important questions and I hope you can help me with that. I use LCD 8.0
1. Is it possible to display a scrollbar in a listbox as soon as the populated items exceed the visible area before clicking on the list box??
Right now, I have to click on the box in order to be able to scroll down. But when i select items from one listbox which is populated in another and I would like to see as soon as the selected items is not visible due to the limited visible area that a scroll bar appear without me clicking on the listbox.
2. Is it possible somehow highlight and set focus on just selected item in a listbox when the visible area has been exceeded?
3. Is it possible to print the entire content of a listbox which has a limited visible area?
4. Is it possible to prevent selection of an already selected item in a listbox?
I appreciate your help in advance!!!
Thanks,
Diana

My guess is only 4th one on your list is possible to do. There are no out of box settings to do this, but can be done using script. On the change or exit event you will compare the selected value with previous selection(s) and set the Alert to display or set the focus back to list box.

Similar Messages

  • In VIEWING (to print) my iTunes music (in finder), how can i view subfolders without clicking on the  triangle of each main folder?

    In VIEWING (to print) my iTunes music (in finder), how can i view subfolders without clicking on the  triangle of each main folder?
    I am trying to print a list of all my music. For example, main folder is BEATLES.  Subfolders are Magical Mystery Tour, Yellow Submarine, Abbey Road, etc...
    and I want to view and print all the subfolders. This is a recovery project after my hard drive failed. I know this is truly a "finder" question and will double post there.
    Thanks.
    Amy

    amy lynn wrote:
    way too much ink.
    Don't know what this means but okay.

  • There are hidden pages in the PDF form I have.  How can I see and print all without clicking on the

    I have hidden pages in the PDF form I'm using (but didn't create).  How can I see and print all the pages at once without clicking on the "next page" button.  In the initial view, there are four pages, but if I click the "next page" button, there are a total of 12 pages in this document.  This is three budget years, each year being 4 pages long.

    You're most likely dealing with a dynamic XFA form created in LiveCycle Designer. You can open it, click the button, and save it, and it will most likely be 12 pages when next opened, but it depends on how the form is set up. The ability to make edits to an XFA form in Acrobat is very limited, especially for dynamic forms, so things like flattening aren't possible.
    If it's not an XFA form, you'd still need to click the button at least once and save. To say for sure what's possible, I'd need to see the document. Can you post it somewhere?

  • After clicking on a bookmark it does not remain highlighted. it did this in 3.3 which made running through a list of bookmarks easier. I can make the highlight re-appear by clicking on the bookmarks box , not the x obviously!

    In 3.3 if i clicked on a bookmark item, either to open in current tab or to open in new tab, the bookmark was highlighted with a blue bar. If I then backed out or closed the tab, the bookmark item would remain highlighted until I selected a new bookmark item. This made searching through bookmarks easy as I always knew the last item I had tried.
    In 3.6 the bookmark highlight disappears as soon as it is loaded, again either in current or new tab. However it can be made to re-appear by clicking on the little box above the bookmarks that contains the word 'bookmarks' and the 'x'

    Update - I discovered that the entire list of bookmarks can be accessed in the Organize Bookmarks window by clicking on the icon for Bookmarks Menu.
    This seem like odd interface behaviour to me.
    All the other software I use follows the pattern that an icon with a triangle to the left, which you click on to expand the menu tree downwards, shows the entire contents of the category when you click on the triangle. In other words, you don't get a different response by clicking on the icon from what you get by clicking on the triangle.
    It also seems odd to me that when an unsorted bookmarks folder is automatically provided that unsorted bookmarks would not be placed there by default.
    Anyway, by getting the list of bookmarks displayed this way I was able to simply right-click on items in the list and delete them, as I thought I should be able to do. Problem solved. Organize Bookmarks interface found to be somewhat unintuitive.

  • How to display descriptive flexfield values without clicking on the field

    Hi,
    We are using ATTRIBUTE1 in PO Headers to provide a field for entering an emergency PO number. When users query a PO in the Puchase Order Headers form with a value in this field, they want the value to display on the form without having to click on the [] field to open up the DFF. Is this possible? This is the only DFF we're using on this form.
    The user is telling me the 11i instance used to but it is no longer there in R12.
    Can anyone help?
    Thanks.

    Hi,
    Check out Reference field and Default Context at DFF level.
    Regards,
    Sridhar

  • How to put safari full screen without click/drag the sides and without going in to fullscreen mode??

    How to put safari full screen without clicking and dragging the sides and without going in to fullscreen mode?
    Thanks
    EG

    Hi, e8god.  
    Thank you for visiting Apple Support Communities.  
    The option to take apps full screen is still available.  Here are the steps on this feature in Yosemite.  
    Take apps full screen
    In many apps, you can expand the window to fill your entire screen. While in full-screen view, swipe to see another app’s full-screen window, to see your desktop, or to see a space you created.
    Expand to full-screen view: Click the green full-screen button in the top-left corner of an app window, or press Control-Command (⌘)-F.
    Move between windows in full-screen view: Swipe left or right on a trackpad or Magic Mouse. For more information, see Learn trackpad and mouse gestures.
    Return to standard view: Move the pointer to the top-left corner of the screen, then click the green full-screen button again, or press Control-Command (⌘)-F.
    Take apps full screen
    Cheers, 
    Jason H.  

  • Display the fullname without clicking on the button in this tutorial

    Hello,
    I am referring to this tutorial : Zeeshan Baig's Blog: Calling PL/SQL Procedure and Function in Oracle ADF application
    1) I would like the fullname to be displayed automatically after the employee id is input ,without having to click the getEmpFullName button.
    2) I would like to copy the fullname value to an entity attribute and save in db .
    Is that possible please ? Thanks.

    Thanks  931325 , I want to use the tutorial link that you sent me .
    Step1 : Define the application module method in respective page definition as shown in below screen shot 
    Step2: Write the below code in backing bean to invoke application module method
    Note : I have done step 1 , my method is already in page definition. How do you implement step 2 . 
    public void ot2_attributeChangeListener(AttributeChangeEvent attributeChangeEvent) {
    FacesContext facesContext = FacesContext.getCurrentInstance();
    Application app = facesContext.getApplication();
    ExpressionFactory elFactory = app.getExpressionFactory();
    ELContext elContext = facesContext.getELContext();
    ValueExpression valueExp =
    elFactory.createValueExpression(elContext, "#{bindings}", Object.class);
    BindingContainer binding= (BindingContainer)valueExp.getValue(elContext);
    OperationBinding operationBinding=binding.getOperationBinding("createCurrentCustomerRow");
    // Set the Input parameters to the operation bindings as below
    operationBinding.getParamsMap().put("pCustomerID", "100"); 
    // Invoke the Application module method
    operationBinding.execute();
    // Get the result from operation bindings
    Object obj =operationBinding.getResult()
    Thanks

  • To display the  output without clicking on the View Output button

    Hi,
    I have a requirement in which i created a menu option in PO through which i submit a PO report using the fnd_request.submit_request. Now there is an additional requirement to view the output of that report (submitted using menu option) without even going to the SRS window. I would like to know if there are any possibilities of doing this.
    Thanks.

    None.

  • How to invoke the FileUpload field click event without clicking on the browse button?

    The Fileupload field click() method works in IE, but not in firefox. Can someone provide some details on this issue?

    A good place to ask questions and advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.
    The helpers at that forum are more knowledgeable about web development issues.
    You need to register at the mozillaZine forum site in order to post at that forum.
    See http://forums.mozillazine.org/viewforum.php?f=25

  • Basic sites (google, youtube) will not load, and intermittently, images on forums will not appear without clicking refresh multiple times, what is wrong?

    Some sites and images will intermittently not load or make me click "try again" several times.
    For example, a forum with a picture thread will not load the pictures, even if they are from multiple reliable hosts.
    Also, I can attempt to visit youtube and must click try again several times to reach the site.

    Do a malware check with several malware scanning programs on the Windows computer.<br>
    Please scan with all programs because each program detects different malware.<br>
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender: Home Page:<br>http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • How do I view my subfolders so I can print a list of my directory (main folders and internal subfolders) without clicking the triangle to expand each main folder?

    In VIEWING (to print) my iTunes music (in finder), how can i view subfolders without clicking on the  triangle of each main folder?
    I am trying to print a list of all my music. For example, main folder is BEATLES.  Subfolders are Magical Mystery Tour, Yellow Submarine, Abbey Road, etc...
    and I want to view and print all the subfolders. This is a recovery project after my hard drive failed. I know this is truly a "finder" question and will double post there.
    Thanks.
    Amy

    Try PrintWindow:
    http://www.macupdate.com/app/mac/6465/print-window
    Regards.

  • Cannot return to message list while in a message without clicking on "compose new message icon" and then cancelling it.

    After updating to 8.1 from 8 i cannot return to my message list from inside a message without clicking on the "compose new message" icon and then canceling out of that.
    Also, where it used to say return, it now says "Edit" and the word "Message" on the top of the screens is scruched together.
    Here is a link to a screenshot of my phone from the main messages listing.
    And here is a link to a screen shot of my phone from within a message.

    Hi Sir,
    Code snippet for reference:
    Private Sub Application_ItemSend(ByVal Item As Object, ByRef Cancel As Boolean)Handles OutlookApplication.ItemSend
    Try
       Dim SentMailItemObject As Outlook.MailItem
    SentMailItemObject = CType(Item,
    Outlook.MailItem)
    ‘Can
    we add here User property in Mail Object Reference?
     Catch ex As Exception
    MsgBox(ex.Message, MsgBoxStyle.Information)
     End Try
    End
    Sub

  • Item on the listbox cant be selected. PLS HELP.

    hello! i am a newbie to ABAP development.
    I followed the listbox steps stated on the RSDEMO_DROPDOWN_LISTBOX because I want to populate my listbox (I created from the screen painter) with the data from a table. It was successful and I can see the data now. Problem is when I am selecting an item of the listbox, it wont be selected. the only thing always selected is the first item on the listbox? what is happening? I do not understand. PLS HELP.
    big thanks.
    TYPE-POOLS: VRM.
    DATA: VALUE TYPE VRM_VALUES WITH HEADER LINE.
    DATA: DD1(20).
    DATA: INT_SPFLI LIKE SPFLI OCCURS 10 WITH HEADER LINE.
    SELECT * FROM SPFLI INTO TABLE INT_SPFLI.
    START-OF-SELECTION.
      SET SCREEN 100.
    MODULE PBO OUTPUT.
      LOOP AT INT_SPFLI.
        VALUE-TEXT = INT_SPFLI-CITYFROM.
        APPEND VALUE.
      ENDLOOP.
       CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
              ID     = 'DD1'
              VALUES = VALUE[].
    ENDMODULE.
    MODULE PAI INPUT.
      CASE SY-UCOMM.
        WHEN 'BTNEXIT'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE.

    <b>THIS IS A FOLLOW UP QUESTION.</b>
    I have listbox DD1 and I populated that with SPFLI-CITYFROM data. I used SELECT DISTINCT statement so that it will not repeat same entry on my list box. It was successful but then on the 2nd time and on the succeeding times you click on the listbox (trying to select other item), the listbox shows all the city entries from the SPFLI-CITYFROM. The SELECT DISTINCT takes effect only at first because as I have said on the 2nd and succeeding times you click the listbox, it will show you all entries of  SPFLI-CITYFROM. why is that? i dont understand.
    im sorry if i sound so dumb. im a newbie.<b> big thanks to all. </b>
    TYPE-POOLS: VRM.
    DATA: VALUE TYPE VRM_VALUES WITH HEADER LINE.
    DATA: DD1(20).
    DATA: INT_SPFLI TYPE STANDARD TABLE OF SPFLI WITH HEADER LINE.
    SELECT DISTINCT CITYFROM FROM SPFLI INTO CORRESPONDING FIELDS OF TABLE INT_SPFLI.
    START-OF-SELECTION.
      SET SCREEN 100.
    MODULE PBO OUTPUT.
      LOOP AT INT_SPFLI.
        VALUE-KEY = INT_SPFLI-CITYFROM.
        APPEND VALUE.
      ENDLOOP.
       CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
              ID     = 'DD1'
              VALUES = VALUE[].
    ENDMODULE.
    MODULE PAI INPUT.
      CASE SY-UCOMM.
        WHEN 'BTNEXIT'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE.

  • Spotlight Search Criteria doesnt appear

    Hi! After the 10.5.2 update the search criteria in the Spotlight doesnt appear when I hit the + button at right, just a grey line under. I tried this in the guest account and it works fine, but not on my admin account. Have anybody the same problem or can anybody help me to repair this?

    This might help: Move this file to the Desktop and restart or log out and back in again. It's in your Home Folder Library. The system will create a new one automatically. The old one may be corrupt.
    /Users/yourusername/Library/Preferences/com.apple.spotlight.plist
    It may be necessary to restore your Spotlight settings in Sys Prefs after. Also, this might be a symptom of not enough free space on the drive. Do a getinfo (CMD-I) on the Macintosh HD folder. You should keep around 15%-20% free.

  • How to create report from SDK without clicking through ther Query manager ?

    Hello,
      I need to create an on-screen report with selection criteria. (Something similar to Reports/Inventory/Items list)
    I could create a query and save it but
    - how to start the query by SDK then - without clicking through the Query manager ?
    - how to pass the selection criteria to the query ?
    Please suggest me ?
    Regards,

    As the helpcenter(2005 helpcenter) has missed this bit of documentation (on UserQueries) could someone please provide an example of using this object
    thanks
    Message was edited by: George Savery
    hmm I thought it had timed out .... Woops

Maybe you are looking for

  • Using older client 10201 with 11g database

    Hello, Are there any issues with using sqlplus client 10201 with 11g database with regard to performance? I would think using the 11g client with 11g database would be preferred but what would be the disadvantage in using sqlplus 10201 with 11g datab

  • Desktop GUI

    Hello, Looking for a strong light weight Desktop GUI that will work with Solaris 10, and be a good candidate for VPN Technology. The Java based one that is coming with Solaris 10 has a high overhead and bogs down. Sun's CDE is not going to be support

  • 4:3 footage shown as 16:9 with downconverted HDV

    Hi, I captured my HDV footage with FCP 6 from a Sony HVR-A1, using the letterboxing setting to downconvert to DV. This footage looks fine in FCP 6 (it shows as 4:3 with black bars top and bottom). I now want to use the footage in FCP X, but when I im

  • Set a ring value programmatically

    I use a ring control that is filled in with values The progranm value  is example 0.001 Ring 3 1 0.1 0.01 0.001 0.0001 0.00001 etc How can i set the value of the ring programmatticly, so the 0.001 is selected? see attached example setRing.vi Kind reg

  • What is difference between consumption stock and procumrement stock

    Hello Masters, I am new to materials management, can you please provide the differnces between consumption stock and procurement stock. Can you please provide with examples Thanks KV