Using the enter key on an editable table

Hi,
I'm using 11g adf and I can't figure out how to get past this:
When going through an editable table (with editingMode="editAll") using the enter key, it will stop after a certain number of rows, equal to the value of fetchSize. If I want to go down further, I have to scroll down another way to make it fetch the next set of rows, it won't go to the next row with the enter key. It simply won't execute the query to fetch the next rows.
Increasing the fetchSize will just delay the problem to a row further down (and decrease the performance since the fetch operation can take quite a bit longer).
I've tried to put a clientListener on both the table or the inputText fields to intercept the enter key, but that won't work when the table is in editable mode.
Is there any way to fix this problem?

Hi,
I've tried to put a clientListener on both the table or the inputText fields to intercept the enter key, but that won't work when the table is in editable mode.
The clientListener needs to be on the inputText fields. Then in JS you need to call a server listener which will check if the current row is already at the range end and if calls NextSet (you can provide this as a method binding). Unfortunately after this you will need to PPR the table to show the new rows. This is how I would try it.
Frank

Similar Messages

  • 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

  • I can't use the 'Enter' key to take me to a website I've typed into the nav bar - I have to use the mouse to click on the 'go' arrow. Why? How do I fix this?

    I can't use the 'Enter' key to take me to a website I've typed into the nav bar - I have to use the mouse to click on the 'go' arrow. Why? How do I fix this?

    See:
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Can you change iMessage to not use the enter key to send a message on a macbook pro?

    I'm using a mac with OS X Yosemite version 10.10.1 and I'm wondering if you can somehow change the settings of iMessage so that when you press the enter key it doesn't send the message. Thanks if you can help.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Using the enter key to break the line

    Numbers 3.2, any way to edit this keyboard shortcut? It's not convenient to use alt-enter all the time? Such a simple thing to ask, I can't actually believe this app does not have this feature.

    I've looked but am having trouble finding a preference or some other setting in Numbers 2 (the previous version) that allows remapping this key.
    You can easily modify keyboard shortcuts for Numbers 3 for any menu pick just the way you can for any other OS X application via System Preferences > Keyboard > Shortcuts.
    But what you are discussing here is not a keyboard shortcut.  It's entering a specific character into text, not executing a command.  Remapping your keyboard may do the trick for you.  Have you tried?
    SG
    P.S. We're all just fellow users here.  If you wish to communicate with Apple, choose Numbers > Provide Numbers Feedback in your menu.

  • Story desktop crashes when using the enter key

    This started happening today.
    I can reliably trigger the problem by opening a screenplay, going to the end of a line and hitting enter.
    I get a dialogue box that states: "We're sorry, but Adobe STory has encountered an unrecoverable error and must shut down."
    The report details are as follows:
    <ErrorReport date="Fri, 17 Jan 2014 08:07:41 GMT">
    <documentMeta userRole="owner" documentVersion="0"/>
    <error message="TypeError: Error #1009">null</error>
    <command name="vu.editor.controllers.selection::CmdTypeText" phase="onExecute"/>
    <platform version="WIN 11,9,900,169" playerType="Desktop" os="Windows 8" isDebugger="false"/><trace></trace></ErrorReport>
    Oddly enough, this is not triggered if I hold the shift key and hit enter.

    Hi,
    Sorry for the inconvenience.
    Could you please save your script as stdoc ('File->Save to disk') and send it at DL-AdobeStory-support<at>adobe<dot>com so that we can debug the issue and suggest a workaround.
    Thanks
    Rashi

  • Hitting the "Enter" Key

    Hi,
    I have a bsp page with few text fields and a submit button. When i use the mouse to click on the submit button its ok but when i use the enter key the page will just refresh and all data that is entered will disappear. I tried using onFocus and still its not working. But when i use the same onfocus statement in normal HTML page the onfocus works but when i have that exact code in BSP it wont work.
    Any advice would be greatly appreciated.
    i tried the search but most of them are HTMLB and i am just using simple HTML and java script combination to attain what is needed
    thanks!

    what i would like to happen is after entering the employee number and the user hits the enter key it will submit the form as if the "Submit" button was clicked.
    when i click on submit button it works fine, if u just hit the enter key the page will just refresh.
    I went to debug mode and when i hit enter, oninputprocessing is not called at all
    Here is the HTML
    form name=mainform method="POST" onsubmit="return CheckInput(this)
    Employee Number (8 digits):
    input type=text    name="EMPNO"  onKeyPress="checkEnter(event)"
    input type=submit name="onInputProcessing(Display_User)" value="Submit"     
    Here is the oninputprocessing
    CASE event_id.
      WHEN 'Display_User'.
          request_info-actnreq = 'N'.
          request_info-empid = empno.
          application->setrequest( EXPORTING request_info_t = request_info
                         runtime = runtime
                       IMPORTING
                         return = return ).
          IF return-type = 'S'.
            navigation->goto_page( 'DisplayUser.htm' ).
          ENDIF.
      WHEN 'Cancel'.
    DATA: v_url1 type string value 'http://...',
       v_url2 type string value '..../'.
    data: v_url type string.
       concatenate v_url1 v_url2 into v_url.
        navigation->goto_page( v_url ).
      WHEN OTHERS.
            request_info-actnreq = 'N'.
          request_info-empid = empno.
          application->setrequest( EXPORTING request_info_t = request_info
                         runtime = runtime
                       IMPORTING
                         return = return ).
          IF return-type = 'S'.
            navigation->goto_page( 'DisplayUser.htm' ).
          ENDIF.
    ENDCASE.
    thanks!
    Ryan
    Message was edited by:
            Ryan Luna
    Message was edited by:
            Ryan Luna
    Message was edited by:
            Ryan Luna
    Message was edited by:
            Ryan Luna
    Message was edited by:
            Ryan Luna
    Message was edited by:
            Ryan Luna

  • 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

  • Using the Tab Key in Simulations

    Hi, I am new to this forum and new to Captivate 5.
    I am creating online courses that teach people how to use our company's software programs so I use Captivate simulations often.  We use Captivate to record the simulations and then we use Articulate Presenter to create the course.
    Problem 1
    I still can't figure out how to use Tabs smoothly with Text Entry boxes all together. I've been reading all of the forum information and trying everything and the Tab won't work correctly for me.
    I have only placed one TEB on a slide but when I get to the second TEB on the next slide, I start typing the text and the system moves forward to the next action before I finish typing the text. Or, I have to press the Tab key twice to get to the next TEB on the next slide. I am totally confused.
    Problem 2
    I have been able to successfully create a simulation using the Enter key to validate text entry boxes.  I publish the simulation and use the swf file to create a web object that gets placed in Articulate. The web object holds the swf file and the html file below.
    Here is an example of the html file:
    This works just fine when I use the Enter key to validate text entry boxes. However, we decided to use the Tab key and now I have to deal with the seamless tabbing issues in Captivate. I figured out how to add the seemless tab info to the published file, Can I use the Captivate html file to create a web object? If so, how do I do that?
    Please help!!

    I have had success using TAB in Captivate 5.
    I learned:
    Dont put Text Entry Boxes on the timeline appearing at 0 seconds. Have them appear at 0.2. This gives it time to load.
    Make sure they are on the top layer.
    Appear for the duration of the slide, no transitions, and pause until the user clicks.
    I noticed if you type fast (as the learner) it kinda messes everything up. Add a distraction so you learner slows down on their typing speed.
    Also make sure you have the update installed. There were some bugs fixed in the TEB area.
    Good luck. email if you have any more questions.

  • JFileChooser - activating buttons with the enter key

    Hi All,
    I am trying to figure out how to activate the cancel button in the file chooser by tabbing to it, and than pressing the enter key. I know how to do this in a regular dialog, but I can't seem to get the access I need to the JFileChooser to get it to work there.
    I would appreciate any help.
    Thanks!
    robinste

    The Buttons in the File Chooser by default dont use the Enter Key.
    You must make the Enter key work if you are to use it
    after you tab to get the focus on to it.
    For this to be done you will need to extend the FileChooser
    and change the key listener for the cancel button .......
    Hope t was of some help ............

  • How the "enter" key in small keyboard works?

    I create a string control and try to input a string ended with "enter". I can't use the "enter" key in small keyboard (right part of key board). Only the "enter" key in the main keyboard works. Why?

    > I create a string control and try to input a string ended with
    > "enter". I can't use the "enter" key in small keyboard (right part of
    > key board). Only the "enter" key in the main keyboard works. Why?
    >
    Another thing that helps to control this is the Tools>>Options setting
    for swapping the behavior of the two keys. Also, a Shift modified big
    return key acts like the small key in most situations.
    Greg McKaskle

  • How do I remove  the enter key on the numeric keypad as a command key?

    How do I remove the enter key on the numeric keypad as a command key.  I want to use the enter key as a return key.

    Don't.  It will void the warranty.  Take is to an Apple store or an AASP and have them do it.

  • Clearing the history causes the enter key and search button not to work

    If I clear my history and set my browser to never remember or suggest websites, the search button doesn't work. I can click on it but nothing happens. In addition, if I simply use the enter key from my keyboard, that doesn't work either. I have to reset firefox and then the new version will work (but if I go back and change all my history settings again and then it stops working). Please help.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Not able to use the Tab key to Tab indent when within a text edit window...

    Two questions please... First one is above for the tab function. In Safari I just need to press control+option+tab to indent a tab within a text edit box on a website. This function is being used more via cloud and mobile capability.
    Second... I can, in Safari, Copy and paste a site with tables. Works great in Safari. When I try to do this in FF I lose the formatting of the tables and it just give plain text without the tabled fields.
    I would love to use FF because the compatibility if much greater than Safari, but... I need my functionality as well to do my work to the best and quickest ability.
    Thank you

    Help About says I'm on 20.0.1
    Up until last week, I was able to use the tab key when typing emails and other multi-line text boxes.
    Suddenly the behavior of the tab key changed. This isn't the first time. It's been quite a while ago that the function of the tab key changed from indenting to moving around the page, then after some time it changed back to indenting.
    Can we get this fixed and leave it alone, please?
    I may give one of those add-ins a try, but my problem with add-ins is that they break when FF is patched or upgraded, then I'm left with out the solution they provide.
    Can we just fix Firefox, please?
    Thanks,
    Frank
    P.S. Another potential fix I came across suggested starting FF in safe mode to see if the problem goes away. It does not. It seems to be a change to FF that appeared after an update last week. On or just befor 24 Apr.

  • Is There a List of Keyboard Shortcuts for Adobe Digital Editions, I Found Two By Accident the "Arrow" Keys and the "Enter Key" for Turning Pages in an eBook...

    Hi  ??  :       Does Anyone Know If There is a List of Keyboard Shortcuts for Adobe Digital Editions, I Found/Discovered Two By Accident the “Arrow” Keys and the “Enter Key” for Turning Pages in an eBook...   Thanks
    I Did Look for this Keyboard Shortcuts in Adobe Digital Editions Help & FAQ Areas and Got the Run Around, Very Hard to Find How Use Adobe Products !!
    Microsoft Windows Vista & Win 7 Operating Systems
    Message was edited by: Al Adams

    Nope, I doubt it.  As I said:
    I disabled Aero theme, checked font scaling was 100% and rebooted Windows in between all of the steps to no avail.
    I've been reading a lot around this and it seems the arrow key problem is a red herring; I think it's just some kind of terminal preferences corruption.

Maybe you are looking for

  • HP LaserJet Pro P1102w - I wish make e.print to work

    OS Windows VISTA 32 bit - desktop- I can't find the printer email address to print from smartphone because I can't follow your instructions referred to a display not existing on HP LaserJet Pro P1102w "Per Officejet: Sul display presente sul pannello

  • Contacts wont open on ipad

    my contacts wont open on ipad nor in icloud. i restored the whole ipad but still the same problem

  • My USB drive is not working,

    I plug in my Iphone to charge or connect a flash drive into the USB slot but the computer does not acknowledge that it is there.

  • In which format FM takes date

    hi all, plz guide me that in which format date is taking in FM. Like in my function module date is datum type and FM is working properly. but when i add that FM in bsp its not working. i converted my date in datum type but still nut working. plz sugg

  • Persistent ERROR, please HELP?  :)

    Hello Everyone.. If someone would please write me directly, I will send a screen capture of the error message. I just cannot get around it. Thought reinstalling the CD on a different hard drive, brand new in a sense, would solve the problem, but it h