How to show auto finish( complete) bubble ?

I am not sure if bubble is the correct term.
Users requested if there is a way to mimic MS Access when entering data in the form if the same data has been entered previously, Access will display the previous typed data in a bubble (?) after couple strokes. Can this be accompolilshed in APEX ? If yes, can someone share your thoughts or point me to some related links ?
Thanks bunch !!
Tai

Hi
The term you're looking for is auto-complete. Google that along with Denes Kubicek's name and you should find some solutions.
Like this...
http://apex.oracle.com/pls/otn/f?p=31517:53
Cheers
Ben

Similar Messages

  • I downloads the latest iTunes software update and it properly installed.  But,  I cannot close the window showing it was completed and the blue completion bar is full but cannot cancel or close it either.  Any ideas on how to clear that out and close the

    I downloaded the latest iTunes software update and it properly installed.  But,  I cannot close the update window showing it was completed and the blue completion bar is full but cannot cancel or close it either.  Any ideas on how to clear that out and close the window.  Tried to quit on both the big window and the software update title in the menu bar.  No luck.

    Tried that by shutting down via the power button only as the normal shutdown was nixed by the open window issue.  It did not help.  Found a very similar question in the discussions and it recommended "Force Quit".  That worked and the update works normal and the window is gone.  Thanks!

  • How to create Auto complete text box in share point 2010 Visual web part

    Hi All ,
    I am want to use Auto complete text box in share point 2010 Visual web part ,data need to get from share point list how to  create 
    please guide me how to use Auto complete text box
    Thanking you,
    Arun Darly

    Hi Arun,
    Please refer to the following article.
    SharePoint 2010: JQuery Autocomplete Textbox Containing List Items
    http://smarttools.codeplex.com/wikipage?title=Autocomplete%20Text%20Field
    Please don't forget to mark it as answered, if your problem resolved or helpful.

  • When I tried to purchase whatsapp, an error 'please contact itunes support to complete transaction' How to contact to finish my transaction

    When I tried to purchase whatsapp, an error 'please contact itunes support to complete transaction' How to contact to finish my transaction

    Hi, I got the same problem. Have you fixed your problem? Please tell me how to do it. Thanks.

  • How to stop iphone from completing text before i finish typing

    how to stop iphone from completing text before i finish typing?

    I'm not sure what you are asking here. Can you describe your problem in a little more detail?

  • My Library shows some albums as separate titles so you can only choose 1 title at a time but not the whole album to be played. How do I create  a complete album ?

    My Library shows some albums as separate titles so you can only choose 1 title at a time but not the whole album to be played. How do I create  a complete album ?

    check out this excellent user tip by Steve MacGuire.

  • Why my map dosent show the addresses completly? it just shows the name of the city or in the best way the name of expressway (no matter how much i zoom in)and it wont work in reminder or any other place. this happend after i update my iphone 4 to ios 5.

    why my map dosent show the addresses completly? it just shows the name of city or in the best way the name of exxpressway and it wont work in reminder or any other place. this happend after i update my iphone 4 to ios 5.

    I am having a really wierd issue as well that is probally related. I dont see 95% of the album artwork associated with my music. Also, it seems as if this has gotten worse since I started using that match feature

  • How to remove auto start of firefox plug in page

    1) how to remove auto start of firefox plug in page. we do not want this site to open when openning firefox.
    2) we proceeded with a few updates as requested, but firefox did not show the update once complete-still said need to update.

    First of all your Flash plugin is out of date: Use Adobe's own page to test your version of the plug-in and to update it www.adobe.com/software/flash/about/ -- evidently the same information is not getting to the Mozilla plug-ins test. That might fix your problem if your home page uses Flash such as a news site.
    Find updates for installed plugins at www.mozilla.com/plugincheck/mozilla.com/plugincheck
    plugin page keeps coming up: see https://support.mozilla.com/en-US/questions/832793 particularly the replies near the end (different replies for different users).

  • How to show filtered parameter in dropdown form in crm 2013

    Hi,
    I want to create a report in crm 2013. When I report is run then filtered parameter fill record from database in dropdown form and when I select record from dropdown then generate report of selected record. Please tell me how to show record in filtered parameter
    from database within crm. In below image paramter is text field. How to auto fill filtered parameter from database.

    Hi Aamir,
    Check if the below link helps!!
    https://social.microsoft.com/Forums/en-US/ad8a3bc2-dbec-4597-adfd-8bd6c34f5e9a/drop-down-parameter-in-crm-2011-custom-report?forum=crm
    Thanks,
    Prasad
    Make sure to "Vote as Helpful" and "Mark As Answer",if you get answer of your question.

  • How can I read the complete text I see in spotlight?

    Hey just here to ask a quick question. I just noticed that I can still see messages that i deleted (or so I thought) on spotlight. Now, I would like to know how I can see the complete message. On spotlight you can only see a few words of the text but I would like to read the complete message if possible. I don't sync my phone at all but I do have the icloud on. I tried restoring my phone but I don't have any space left on it. Also, the details show that my phone was last backed up on March or so, does that mean I can view all the deleted messages since March or only the messages I deleted before March?? Please help. Hope I'm very clear and understandable.
    Thanks.
    Luis V.

    Do you happen to know if there is any other way I can view the complete message with outside sources (apps, programs, etc.)? Thanks for the help.

  • How to show image in a Transperent form ?? screen shots attached

    Hi
    Help me in making Images appearing as Transperent . Screen shots attached
    I am having a TextInput and a Search Button (The Functionality is that user can enter something in this TextInput and makes a Search Operation by pressing Search Button .)
    At the Initail screen display i need to show Some Image in transperent  Inside this TextInput  , when Mouse is focused on this TextInput , the Image will be completely Invisible .
    Now the question i want to ask is , how to show image in a Transperent form ??
    Please find the screen shots attached with this Thread .

    Thanks for specifying  the alpha property of an Image .

  • How to show popup from backing bean code immediately?

    Hi,
    I'm using JDeveloper 11.1.2.1.0 and have problems with showing popups. I have a button with an action on my page and a method in backing bean.
    I want to rise up few popups from this method in backing bean (for example just an anouncement that something will happen) or a dialog
    (for example a question if you want to continue).
    I understand how to get a dialog response to deal with it in code, but the problem is that the popup doesn't show up immediately, but only when
    this method called on button finishes. I'd like to handle dialog responses in the middle of the action and then the code to continue with the execution.
    Here is my backing bean code:
    private RichPopup popup;
    public String test() {
    //Some code...
    RichPopup.PopupHints hints = new RichPopup.PopupHints();
    popup.show(hints);
    //Here is the place for code which I want to be executed after popup closes,
    //but is executed before the popup shows...
    return null;
    And here is part of my jssf:
    <af:commandButton text="Test" id="cb1"
    action="#{popupBean.test}"/>
    <af:popup id="popup" binding="#{popupBean.popup}">
    <af:dialog id="dialog" type="yesNo"
    title="Dialog"
    dialogListener="#{popupBean.onDialogAction}"
    binding="#{popupBean.dialog}" clientComponent="true">
    <af:outputText value="Do you want to continue?" id="ot1"/>
    <af:clientListener method="onDialogCancel" type="dialog"/>
    <af:serverListener type="DialogCancelHandlerEvent" method="#{popupBean.onDialogCancel}"/>
    </af:dialog>
    </af:popup>
    Can someone give me some answer how to show the popup from backing bean code immediately?
    Thanks in advance,
    Tina

    If you want to execute code after popup closes, then put this code in PopupCanceledListener or in DialogListener(you can't block method execution).
    Dario

  • How do I auto fill "file info" in photoshop cc ?

    How do I auto fill "file info" in photoshop cc ?

    If it's repeating information such as your contact and copyright information, you may wish to create a Template.
    Auto-complete is available in Photoshop CC, which is a time saver. This feature has been left out of CC 2014.
    How can I set in ps the "file info" autofill option?
    Creating Metadata Templates | Photometadata.org

  • How to show the message text for constraint violations

    Hi all,
    In a batch procedure a primary key is violated (ORA-00001). For the primary key, a message is recorded in the TAPI and the message table.
    How to show the enduser a proper message text instead of the ORA-00001.
    We are using Designer 6 with Headstart 2.1.2.
    Thanks in advance,
    Joep

    Joep,
    If you try to insert the record by calling the ins procedure of the Table API, you will see that it will result in an ORA-20998 message, which means that the error message details reside in the CG$ERRORS plsql message table. These messages can be extracted e.g. with the messages.sql script, shipped with headstart.
    If you do not want to rewrite your direct DML (insert into [table name] ...) in the complexer calls to the TAPI services, you might want to user VAPI's for it. In fact, this is one of the major advantages of using VAPI's.
    The CDM guidelines volume, chapter 6 states that:
    <I>The front end no longer needs to trap declarative constraint
    errors (Primary Key, Unique Key, Not Null and Check
    Constraint violations) and replace them with a user-friendly
    error. The View API issues DML statements through the TAPI
    and the TAPI traps all declarative constraint errors, and puts
    user-friendly message on the stack, in the preferred language of
    the user! Fore more information, see the section, Completeness
    of Rule Violations Reported in Front End, in this chapter.</I>
    So the only thing you need to do is generate VAPI's, and trap the ORA-20998 message (qms$errors.qms$exception) in an exception handler, where you retrieve the user friendly messages from the message stack!!
    Regards, Marc

  • How to set auto backup as like quark express

    Hi,
    I want to know how to set auto backup opening files in InDesign 6 as like quark express

    InDesign restores everything after a crash.
    Versioning was removed aw hile ago, now you should set it up on OS or computer level or use a cloud service like dropbox which offers such functionality.
    For formatting use Paragraph Styles, for exceptions use Character styles. It is a no-go to make a font bold, it must be done via styles. I think it is a problem with Quark documents that people bolded with the B button their text, this caused false styles and did no semantic styling which would not allow to create PDF/UA documents.
    Paragraph and Character Styles are completely different in InDesign than in Quark. In InDesign every font property is defined in a paragraph style. Character Styles are only used for exceptions and only the different properties are defined. E.g. if you have black text and want some words or letters to be red the InDesign Character style would define only the property character color to red, everything else would remain empty. So you could apply the same character style to text with different paragraph styles with different fonts and sizes. In Quark you would have to set up a different character style for each paragraph style.

Maybe you are looking for