Enter key instead of clicking on the button

Build JDEVADF_11.1.1.4.0_GENERIC_101227.1736.5923
Hi,
I have input text and a submit button. After I made my entry in the input text I want to press the Enter key and the action is executed.
How can i do it??
best regards

We can use ADF component with out using ADF form.
Sample
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core">
<af:panelGroupLayout id="pgl1">
<af:inputText label="Created User" id="itCreatedUser"
binding="#{pageFlowScope.historyBean.itCreatedUser}"/>
<af:commandButton text="Search" id="cbSearch" action="userDetails"
actionListener="#{pageFlowScope.historyBean.cbSearchAL}"/>
<af:inputText label="Label 1" id="it1"/>
</af:panelGroupLayout>
</jsp:root>
Edited by: sameera.sac on Jun 29, 2011 4:33 PM

Similar Messages

  • When I open an email, instead of clicking on the button 'html view mode', how do I set it permanently so I won't have to click on it each time?

    How do I keep html view mode on in email, instead of clicking on it each time?

    Hi linktogen,
    In order to test this, can you please provide the webmail you are using for further testing?
    Thank you!

  • I can no longer use the address bar to change websites. I can block text with the mouse and input a new URL but when I hit the enter key or left click on the right arrow it has no effect and the page does not change.

    Also Ctrl+Enter no longer adds www+.com to words entered in the address bar. I can use bookmarks to change to other web sites or my password manager. Re-booting my laptop makes no difference. Please help.

    Hey CaptRobyn,
    Have you tried starting Firefox in Safe Mode? Hold down "shift" while Firefox is starting up. It might be related to an extension. Then you should read [[Troubleshooting extensions and themes]].
    Hopefully this helps!

  • How can I use the enter key instead of tab to change field focus?

    I am using Acrobat 9 Pro.
    We have a fillable PDF where the users enter numbers into fields.  They want to be able to use the <enter> key on the 10-key pad instead of the <tab> key on the keyboard to move the focus to the next data entry field.
    How can I set my PDF so that it recognizes the <enter> key instead of the <tab> key for changing focus?
    Thanks!

    You can use a custom Keystroke script, something like:
    // Custom Keystroke script for text field
    if (event.willCommit && event.commitKey === 2) {
        getField("Text2").setFocus();
    Where "Text2" is the name of the next field. This doesn't disable the Tab key though. For more information, see: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.608.html

  • Pressing enter instead of clicking on a button

    Hey all, this is rather simple but the search term 'enter' is very common so i'm having a hard time searching for my solution!
    I'm basically writing a search program that finds customers, at the moment I have a screen where the user types in a name then clicks on a button I have which executes the search.
    I'd like to be able to have it search by pressing enter as well as being able to click on the button.
    I tried debugging to see what the sy-ucomm was when I pressed enter but apparently that doesn't change.
    Can anyone direct me to what I should be researching to implement this?
    Just a few basics to get me on my way would be great,
    Thanks

    Hi Mate
    In your PAI okcode module you can include '/00' or 'ENTE' to capture the enter keypress. 
    This will solve your problem.
    Regards
    Gareth

  • Enter key instead of TAB key

    Hi folks,
    I'd like to make the ENTER key behave the same way as the TAB key in
    the system I'm developing. I thought I would be able to do it by setting
    the ENTER as a function key (using Window.SetAsFunctionKey), and
    then after detecting an ENTER key press, request focus on the current
    fieldwidget's 'NextTabField'. However, this attribute defaults to NIL unless
    you override the default TAB sequence. And I don't really fancy setting
    the Next and Prev TabField for every onscreen field.
    Anyone done this before using a simpler method?
    By the way, I don't really want to get into a long thread about whether it is
    good practice to bypass Windows (TM) standards or not. We require
    fast data entry, and keyboard entry is essential for that.
    Cheers,
    Duncan Kinnear,
    McCarthy and Associates, Email: [email protected]
    PO Box 764, McLean Towers, Phone: +64 6 834 3360
    Shakespeare Road, Napier, New Zealand. Fax: +64 6 834 3369
    Providing Integrated Software to the Meat Processing Industry for over 10 years
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Duncan,
    The application we are building will replace legacy application and had similar
    requirements to accommodate the current users. We solved this problem by creating a
    special frame, appropriately named as the "Terminal Frame". It is distributed as
    part of the Scaffolds framework.
    The Terminal frame implements ENTER instead of TAB key. As you know the tabbing
    order in a terminal frame (top to bottom, left to right) is different than windows
    tabbing order (left to right, top to bottom). The Terminal frame solves the tabbing
    problem by constructing a "field traverse list" which includes all the fields in a
    window including nested views ordered according to their X,Y co-ordinates. It is a
    recursive method works on the same lines as described by Sakharov, Nickolay in
    earlier mail. The method also sets the NextTabField, PrevTabField references for
    each field in the traverse list.
    This framework is working very well for us. In a terminal frame world, you still
    have some user training issues as some of the fields (OutlineField, DropList,
    ArrayField, CheckBoxe etc.) behave differently for ENTER and TAB keys. But these
    are minimal compared to a complete change in style.
    Hope this is helpful.
    Good Luck,
    Shirish
    Duncan Kinnear wrote:
    On 22 Jun 99, at 23:47, Jeanne Hesler wrote:
    Do the math on this one. Be sure your users understand the cost and the
    lack of payback. I have no problem going against common practice when
    there is a good reason, but this reason just doesn't add up. Even if it
    did slow them down, which it won't, they would never lose enough time to be
    worth the work that it would take to implement.Jeanne,
    Thanks for your reply (even though it doesn't help me!).
    Don't get me wrong, I'm not advocating we abandon the TAB key
    functionality in favour of the ENTER key. I just want to ADD the ENTER
    key as a navigational aid for our 'legacy' users (and we have many). If it
    is done right, there should be no need to tell the user about it. Their
    transition to the new product would be virtually painless.
    Since I posted my original question I've realised that the cost of
    implementation is actually fairly low. And this is why. I have just
    discovered that the default tab order defined by Forte (left to right, top to
    bottom) is essentially useless for most of the windows we will be creating.
    Therefore, we will need to override it by explicitly setting the
    "NextTabField" and "PrevTabField" attributes of our input fields in virtually
    every window. As I am writing the framework for our new product, I will
    have to implement the facility to do this in the framework itself. And if we
    have our tab order defined, then adding the ENTER key functionality is
    minimal extra effort (see my original post). In fact, if I implement it in my
    "CoreWindow" (the root of my windows framework inheritence tree), then
    no-one will ever have to deal with it again.
    The TAB key is not even much of a windows data-entry standard. Many
    of our customers have defined secondary systems using Microsoft
    Access, and it uses the ENTER key (along with the TAB key) to move
    from field to field. Will these customers not complain that they cannot
    use the ENTER key to move between fields if we don't implement it?
    As we do not have the resources to completely rewrite our existing
    COBOL system (over 2 million lines of code) in one go. We will be rolling
    out the new system module by module. This means that a lot of our users
    will be switching between the new windows interface and the text-based
    unix telnet sessions. When I switch back and forth between windows
    editors and 'vi' on the unix host, I experience first-hand how mixed
    navigational facilities can hamper productivity!
    Anyway, I was just hoping there might be a little setting somewhere in
    Forte to switch this on, but as no-one has pointed it out, it seems unlikely.
    Thanks again for your input, lively discussion is always welcome.
    Cheers,
    Duncan Kinnear,
    McCarthy and Associates, Email: [email protected]
    PO Box 764, McLean Towers, Phone: +64 6 834 3360
    Shakespeare Road, Napier, New Zealand. Fax: +64 6 834 3369
    Providing Integrated Software to the Meat Processing Industry for over 10 years
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>--
    Shirish Kulkarni <mailto:[email protected]>
    Sage IT Partners <http://www.sageitpartners.com>
    44 Montgomery St. Suite 3200 San Francisco, CA 94104
    (925)210-6965 Office (415) 399-7001 Fax
    The Leaders in Internet Enabled Enterprise Computing
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Enter parameters and then click on the option to fill out data

    I have a form for entering a start date and end date then click Open report button. The use wants to add a default option on this form to pull out data based on a condition (i.e., only class 1, 2, and 3 to be pulled out
    by default). If uncheck the option, the report will show ALL data (i.e., all classes). How can I do that? I think I should change the user requirement so that when he or she clicks on the button, class 1, 2, or 3 to be pulled (by default). And I
    will create an option button to pull out all students on that report. Can you please show me which way is better and how to do it? Thank you in advance.

    Thanks, Karl for your idea. But currently the form has nothing except the Start Date and End Date parameters and a button "open report". Once click, it will open the report with ALL classes. 
    Now the user wants to add an option control on the form and by default it will pull out records that meet the condition of class =1, class = 2  and class =3. Then after the user enters the dates parameters, and click
    on "open report" button, since it's default, the report shows only mentioned data.
     If the user uncheck the box, and click on the "open report" button, all classes will show up. How can I deal with this one? Thank you

  • I can't open personal accounts on the internet. After entering ID and Password then the enter key, it's as if the screen refreshes itself and wants me to start over. Help Please.

    I can't open personal accounts on the internet. After entering ID and Password then the enter key, it's as if the screen refreshes itself and wants me to start over. Help Please.

    Click here and follow the instructions.
    (72059)

  • How to make ENTER key in internet explorer run the  BIP report?

    In BI publisher 11g, users wanted that after entering the values for the parameter, they hit the ENTER key ( on the keyboard)  and the report should run .
    In Mozilla firefox, when I hit ENTER key on the keyboard report runs fine... but in Internet explorer, it does not ( infact in internet explorer TAB key works)
    How to make ENTER key in internet explorer run the report?
    Thanks
    Ashish

    Perform the following steps and tell us if it  resolve this issue:
    1. In Internet Explorer, click Tools, and then click Internet Options.
    2. Click the Security tab.
    3. There are four security zones listed:
    * Internet
    * Local intranet
    * Trusted sites
    * Restricted sites
    Click the zone being used by P6, which is noted at the bottom right hand corner of the browser window when the P6 URL is being accessed.
    4. Under Security level for this zone, click Custom Level.
    5. Under Downloads, under Automatic prompting for file downloads, click Enable, and then click OK two times.
    6. The browser will need to be restarted for the change to take effect.
    Refer to the following Microsoft Knowledge base article for additional file download and active x controls which should also be enabled: http://support.microsoft.com/kb/883255

  • I get a tab opening that says that I have won and to click on the button to get my prize, I am unable to close that and therefore uninstalled Firefox... What is that all about? It appears to be malware.

    The tab that opens does so in a second tab after the home page tab has opened, but it does not allow access to the home page tab, and it will not allow closing of the tab. It says that you have "WON", and you need to click on the button to collect your prize. It is clearly malicious software, but what, why and how to avoid it is not at all clear. It does not corrupt Internet Explorer.

    Click the Firefox button, go to Options | Options | Advanced and in the General tab, remove the checkmark from "'''Warn me when websites try to redirect or reload the page'''".
    You won't get that dropdown banner anymore afterwards.

  • HT5312 I am trying to reset my security questions, I cannot locate the option for a rescue email address with My Apple Id. When I click on the button to reset the security questions, it states it is sending an email to the primay email address, but it doe

    I am trying to reset the Security Questions as I have forgotten them, when I have logged into My Apple Id, and click on the button to reset the Security Questions, it states it is sending an email to the Primary Email address. I do not have the option to input a Rescue Email address, the only option I have is to input an Alternate Email address, which I have done so.
    Also when I have tried to book an appointment throuth Online Support, I have not successful, I have rung a telephone number provided by the Mac Store in Perth, Australia and the reply provided is that we are closed. I was given to understand that Apple provided 24/7 Support to their users.

    Hot N Spicy wrote:
    I am trying to reset the Security Questions as I have forgotten them,
    Forgotten Security Questions / Answers...
    See Here > Apple ID: Contacting Apple for help with Apple ID account security
              Ask to speak with the Account Security Team...
    Or Email Here  >  Apple  Support  iTunes Store  Contact
    More Info >  Apple ID: All about Apple ID security questions
    Note:
    You can only set up and/or change a Rescue Email Before you forget the questions/answers

  • Everytime i click on the view in itunes button/link on the itunes website so that i can download apps, nothing happens. I accendentally  clicked on the button other than open itunes and now i cant fix it

    everytime i click on the view in itunes button/link on the itunes website so that i can download apps, nothing happens. I accendentally  clicked on the button other than open itunes and now i cant fix it

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Go to Settings>iTunes and App Stores and sifnout and sign back in
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.

  • After 2/5/2012 update to 10.0, the enter key no longer functions on the URL bar. (Running Windows 7 Home Premium on 64 bit Intel Core i3)

    The URL line accepts text, but using the "Enter" key generates no response. The right arrow at the end of the URL line will take me to the URL.

    https://support.mozilla.org/en-US/questions/917446
    thank you

  • I clicked all the buttons in the file sharing window and now my iMac will not turn on.

    I really goofed. I clicked all the buttons in the file sharing window (Screen sharing;File Sharing...Remote Login; Remote Management...Internet sharing) but I did not write down the IP address and now the computer will not turn on at all. Is there a way to roll back my stupidity and get this thing to turn on again?

    There's only one thing you can do: make an appointment with Apple genius at the Apple retail store for a out of warranty replacement.

  • Execute Menu Function on click of the button

    Hi All,
    I have a requirement, where we have to convert the Interactive form to XML on click of the button.
    This button is also available on the form. In the PDF we have option in Documents --> Form Data --> Export Data from Form
    Is there any way I can excute this, when I click on the button. I tried app.execMenuItem(). But it is not working.
    Please help me.
    Amit

    Hi All,
    I have a requirement, where we have to convert the Interactive form to XML on click of the button.
    This button is also available on the form. In the PDF we have option in Documents --> Form Data --> Export Data from Form
    Is there any way I can excute this, when I click on the button. I tried app.execMenuItem(). But it is not working.
    Please help me.
    Amit

Maybe you are looking for

  • ACE serverfarm connection stats

    Hi Guy's, Just wondering if anyone can shed some light on what appears to be a discrepancy in the loadbalanced stats that are produced from a show serverfarm and the stats that my server team report for each loadbalanced server. For example: ACE/cont

  • Clearing doctment in F-32

    Hi, When i go to clear special Gl Payments in F-32 against invoice, it generates 4 documents, two with special Gl Indicators and two normal. In my view this is wrong ,i am unable to understand why this is happening. Experts please shed some light on

  • IPod Shuffle Sync issues

    I have a 4G Shuffle that I had to transfer to a new laptop with Win7. I copied the songs over and have iTune 10.5.2.11 and the songs show there and on the shuffle but on shuffle they are "grayed" and can't get shuffle to play.

  • Customer system voice mail operator Prompts in CUE V3

    Hello, Is there a way to modify the system voice mail operatator prompts wave files (which are played if the caller does not hang up after leaving a voice mail for a subscriber). Thanks!

  • 10.6.7 update and now Canon printer problems

    I had the automatic 10.6.7 update two days ago and everything is fine except now I have printer issues with Canon MF8350. I can still scan, I can print from Safari, I can print from some .pdf but not others, I am unable to print anything from Word -