Tab key to move to next field

Under iPhone OS 2.x or 3.x, is there a way to cause the keyboard focus to switch to the next field? Like hitting the tab key under Mac OSX.
I'm trying to do my 'object add' screen and want, ideally, to do it as a table view with a section, title, and cell for each of the 9 data fields.

Hi Phil - I've been playing with a test bed, trying to get it to do what you described. It's close to finished, but I need to quit now and won't be able to get back to it until Sunday. Here's what I've got so far. Maybe you'll be able to finish it before I do:
// RootViewController.h
#import <UIKit/UIKit.h>
#define kTableViewSections 9
#define kTableViewRowHeight 36
#define kTextFieldTag 100
@interface RootViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, UITextFieldDelegate> {
IBOutlet UITableView *theTableView;
@property (nonatomic, retain) IBOutlet UITableView *theTableView;
@end
// RootViewController.m
#import "RootViewController.h"
#import "BlueAppDelegate.h"
@implementation RootViewController
@synthesize theTableView;
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return kTableViewSections;
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 1;
- (NSString)tableView:(UITableView)tableView
titleForHeaderInSection:(NSInteger)section {
return [NSString stringWithFormat:@"Field %d", section];
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return kTableViewRowHeight;
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
CGRect textFieldRect = CGRectMake(20, 4, 280, kTableViewRowHeight-8);
UITextField *textField = [[UITextField alloc] initWithFrame:textFieldRect];
textField.backgroundColor = [UIColor lightGrayColor];
textField.font = [UIFont systemFontOfSize:22];
[textField setAutocorrectionType:UITextAutocorrectionTypeNo];
textField.tag = kTextFieldTag;
textField.delegate = self;
[cell.contentView addSubview:textField];
[textField release];
// find the text field and set its tag based on the current section
for (UIView *txtField in cell.contentView.subviews) {
if (txtField.tag >= kTextFieldTag) {
txtField.tag = kTextFieldTag + indexPath.section;
NSLog(@"cell: Found %@ tag=%d", txtField, txtField.tag);
break;
return cell;
- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
return nil;
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
// textField is the current first responder
NSLog(@"textFieldShouldReturn: textField.tag=%d", textField.tag);
[textField resignFirstResponder];
// scroll the next cell into view
int nextSection = (textField.tag - kTextFieldTag + 1) % kTableViewSections;
NSLog(@" nextSection=%d", nextSection);
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:nextSection];
[self.theTableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:NO];
// find the textField for the cell and make it first responder
UITableViewCell *cell = [self.theTableView cellForRowAtIndexPath:indexPath];
for (UIView *textField in cell.contentView.subviews) {
if (textField.tag >= kTextFieldTag) {
NSLog(@"return: Found %@ tag=%d", textField, textField.tag);
[textField becomeFirstResponder];
break;
return YES;
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
NSLog(@"viewDidAppear");
// find the first text field and make it first responder
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
UITableViewCell *cell = [self.theTableView cellForRowAtIndexPath:indexPath];
for (UIView *textField in cell.contentView.subviews) {
if (textField.tag >= kTextFieldTag) {
NSLog(@"appear: Found %@ tag=%d", textField, textField.tag);
[textField becomeFirstResponder];
break;
- (void)dealloc {
[theTableView release];
[super dealloc];
@end
There are three jobs on my todo list:
1) Bug fix: In textFieldShouldReturn, I had to turn off the animation for scrollToRowAtIndexPath because when the focus wanted to wrap from section 8 back to section 0, the cell for section 0 wasn't ready. I think we need to wait for the scroll animation to end before trying to reset the focus;
2) Bug fix: The contents of each text field needs to be saved as soon as it loses focus. The saved text then needs to refresh the section when it next becomes visible. Right now you'll see, for example. the text from section 1 reappears in section 6 when that section becomes visible. Of course, this is because the cell from section 1 has been reused for section 6. So the contents of each reused text field needs to be cleared and refreshed from a cache in cellForRowAtIndexPath;
3) Clean up: I use a for loop to find each cell's text field. I can't simply use viewWithTag because the tag is within a range instead of being a constant. There are three of these loops, so that code wants to be in a helper method. Of course, if you're using a subclassed cell, you won't need those loops, since the text field can be a property of the cell.
I'm sure there willl be other odds and ends to clean up, but I think the above structure might do the job for you. Please let me know if you have things working before Sunday afternoon.
- Ray

Similar Messages

  • Set to press the enter key to move to next field on form? 9 pro ext-

    i have creasted a form. I want the person who is using the form to not have to tab to go to the next line. I would prefer to  have the person fill the field and press enter, then the cusor should move to the next file of entry. (instead of tab) I can figure out how to do this. HELP PLEASE!

    It's possible, but you have to use JavaScript. For example, create a new document-level JavaScript and add the following function to it:
    function goNext(sNextField) {
        // Set the focus to the next field
        if (event.commitKey === 2) {
            getField(sNextField).setFocus();
    You then have to call it like this from the Format (or Keystroke) event of a text field:
    goNext("text2");
    Where "text2" is the field name of the next field.

  • I can not use the tab key to move to the next field or use the shift and tab to move to the prior field in forms.

    After updating to 7.0.1 I can not always use the tab key to move to the next field or use the shift and tab to move to the prior field in forms. This always worked in previous versions and it's much needed for my type of work. Does anyone know of a setting to activate this? If not can the Firefox developers work on this issue (please). I love Firefox but desperately need this feature to work correctly. Thanks!

    I tried in safe mode and the tab key worked just fine. I'm not sure about all web forms I've only recently updated to 7.0. The wen form I was using was for appraisal purposes and it has multiple data fields to fill in and also drop down menus to select from. Might I always have to use Firefox in safe mode to be able to utilize the tab between field feature? Thanks for your help!

  • Move to next field after typing item code in a document

    Hello experts,
    In a marketing document we type 1000 in item code field and press tab.
    we would like the cursor to move to next field but instead a list of items is being opened.
    in the list there are two items 1000 and 10001
    in another company we can do it but we couldnt find what is the difference between the two companies setup definitions.
    Thank you,
    Rinat

    Hi,
    Please make sure item number fully entered at item code. If not complete, then list of items window will open.
    If possible please post screen shot above window
    Thanks & Regards,
    Nagarajan

  • TAB key to move through fields in areas suddenly very inefficient, fix?

    Hey,
    So i use tab to jump around in fields in os x all the time, in mail, in the save window (so i can use keys to pick directory), and especially in safari to bring up the google search box. But some time ago (not sure with what update), the tab key started bringing me through EVERY field (as in tabs throught the bookmark bar and tabs along the way, a seriously large number of key presses), especially annoying in safari but also very much so in the save menu (where it takes 15 tabs to get from the save name to the directory). Wondered if there was a preference for this buried someplace i didn't think to look. Any help would be greatly appreciated. Thanks a bunch!
    Tim S

    Tim,
    Go to System Prefernces>Keyboard & Mouse>Keyboard Shortcuts>Full keyboard access: (Check)Text boxes and lists only.
    ;~)

  • Text Entry with Tab Key not advancing to next slide

    I am using Captivate 1 to create a screen that has a text
    entry requiring the user to press the Tab key as the Shortcut Key.
    The users are having to press the Tab key multiple times to get the
    course to advance to the next slide. There does not seem to be a
    rhyme or reason to which text entries this occurs in, nor does
    there seem to be a pattern to the number of times or forcefulness
    in which the Tab key must be pressed, though more aggressive key
    presses have yielded better results. Sadly, requesting the users
    bang the Tab key with as much force as they can muster is not a
    viable option.
    Here are things I have tried:
    Decrease length of slide
    Increasing active time of the text entry
    Adding/removing playback control
    Deleting and recreating text entries
    If anyone has any idea what can be done to correct this
    problem, it would be much appreciated.

    Hi berrylicious877
    The following has worked for me in Cap1, so try it and see:
    Add the text entry box and include the submit button.
    Make the submit button transparent and edit text to a full
    stop at the smallest available font size (Captivate won't accept a
    submit button without something typed in and a full stop is the
    smallest thing available display wise)
    On the submit button, set the shortcut key to "Tab".
    My reasoning was that the shortcut key on the text entry box
    "activates" the box, thus allowing input and the shortcut key on
    the "submit" button "deactivates" the box so that the slide can
    move on as required.
    Please let us know if this helps.
    Andrew

  • Text in form field disappears when I move to next field

    I have a PDF form for doing estimates for my business. I e-mailed it to myself and open it up on iPad. Then I selected open in Adobe.
    I can enter data in any of the fields just fine but when I move to the next field the data I previously entered disappears unless I go back to that field to edit.
    I tried e-mailing a document to myself and when I opened it up on my laptop computer the data fields are empty regardless of whether I highlight that field.
    Can anybody help me out with this problem?
    Thank you, Bob Kroth
    [email protected]

    Hi Pat,
    Well I'm not sure what doc you were looking at but here is a similar pdf.
    I have both Adobe and Scan soft PDF software. If you mouse over the area
    where the address would be typed in and click on that area the text that is
    there will appear. When you click to new field text disapears. I typed in a
    price for mowing and when you click on that field you can see the price. I
    have also tried this on Adobe for iPhone and have the same problem.
    Sorry if I'm not explaining this clearly.
    Bob 612 889-5720

  • Why can't I use tab key to move around in Add Bookmark Dialog?

    It is much easier and faster if the tab key can be used to move around in the Add Bookmark Dialog. Otherwise, it will be very annoying that every time you add a bookmark, you need to grab a mouse.
    Or could you recommend a addon that let me add bookmark without using mouse and the bookmark is just organized simply in a tree view?

    Never tried that before in Firefox, but the Tab key works for me to navigate thru the Add Bookmark dialog in Firefox 3,6.15 on Ubuntu 10.04 Linux. Might be different in Win7 or you may have a problem with one of your addons.
    Do you have that problem when running in the Firefox SafeMode? <br />
    [http://support.mozilla.com/en-US/kb/Safe+Mode] <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this: <br />
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • [Bug?] How to use the Tab key in forms

    Ahoy!
    The latest release of Photoshop has "broken" the native behavior of the Tab key in html panels. I'm not sure if this is a bug or just a new API I need to incorporate.
    Expected behavior:
    1. Focus into text field in a form
    2. Hit the Tab key
    3. The next field is focused.
    Actual behavior
    1. Focus into text field in a form
    2. Hit the Tab key
    3. Photoshop hides the application UI (Photoshop hotkey tab behavior).
    Anyone happen to know if there's something that can be done about this?

    Bug is very annoying for our users when they try to input their usernames and passwords to login (often) and also when they're filling out a large form with four fields in it.
    Hope it is fixed soon or a work around provided.
    Tom Wrenn
    Frontend Engineer
    CreativeWorx

  • Tab key goes to IE Address Line

    Using either Captivate 2 or 3 (it was happening in both), my
    problem was with the Tab key going to the Address line in Internet
    Explorer (rather than staying within the module as it should). The
    problem seemed like it was inconsistent, but turns out there was a
    trigger. After much trial and error I discovered that all tab
    interactions that occured before I put in a Question Slide worked
    just fine, but any that occured after the first instance of a
    Question slide started going up to the address line. So, I am
    either going to have to eliminate the question slides, or put them
    at the end. I'm mostly posting this as an FYI to everyone (although
    it may be common knowledge, I don't know...I certainly couldn't
    find any reference to it, and Adobe themselves couldn't give a
    solution), but I also wanted to ask if anyone has had this problem
    and come up with a way to still use question slide s interspersed
    within other slides that use the Tab key for interaction?

    *NOTE: I found this workaround on the web and it worked for
    me
    In all versions of Macromedia's Flash Player prior to version
    7.0.14.0, once typing focus was established (by clicking on the
    Flash movie), pressing the Tab key would move you between fields or
    objects in the movie - maintaining focus in the movie itself. As of
    version 7.0.14.0, the Flash Player switched to a behavior called
    "seamless tabbing". In this version, pressing the Tab key moved the
    focus right out of the movie and on to fields in the web page, the
    browser address bar, etc.
    Needless to say, this has caused some difficulty to authors
    using Flash (or RoboDemo) to create simulations where the learner
    needs to tab. So, as of version 7.0.19.0 of the player, seamless
    tabbing is now an html parameter. Here's the official scoop from
    Adobe's release notes of that version of the player:
    Disabling seamless tabbing
    This release of ActiveX Flash Player supports a new HTML
    parameter called SeamlessTabbing. The default value is true; set
    this parameter to false to disable "seamless tabbing", which allows
    users to use the Tab key to move keyboard focus out of a Flash
    movie and into the surrounding HTML (or the browser, if there is
    nothing focusable in the HTML following the Flash movie). ActiveX
    Flash Player has supported seamless tabbing since version 7.0.14.0.
    Disabling seamless tabbing restores the tabbing behavior of Flash
    Player 6, in which tabbing from the end of the tab order inside a
    Flash movie wraps the focus back to the first focusable object in
    the Flash movie. Here is an example of disabling seamless tabbing:
    <object ... >
    <param name="SeamlessTabbing" value="false">
    </object>
    NOTE: In version 7.0.14.0 there is no way to disable seamless
    tabbing. Meaning that your simulation might just never work with
    this version. Fortunately it only took Adobe one 'sub-release' to
    realize and correct this problem.
    So, if you're encountering this problem you'll want to:
    Publish the project with html checked
    Edit the HTML field for any media types which display Flash
    movies (including flash output from other programs like RoboDemo)
    and
    Add the line
    <param name="SeamlessTabbing" value="false">
    somewhere in between the <object... .../object>
    save the Html File.
    I know this is a lot to take in, but it's really a simple
    fix.

  • Tab Key Overkill

    I'm trying to get my contact form working but noticed along the way that when I hit the tab key to move to different fields in the form (as I'm sure many end users will do) it starts selecting buttons in other parts of my flash site that I want it to stay away from.  In other words, I'd like the tab key movements to stay within the form fields section of my site.  Can someone point me in the right direction to remedy this?
    Thanks,
    David

    If you want to exclude objects from tabbing, then you need to set their tabEnabled property to false.

  • Customize "Tab" key for JTextArea to focus next component.

    Hi,
    I am trying to change the "TAB" key behaviour for JTextArea, by using CustomAction configured via InputMap() and ActionMap(). When the user presses the Tab key, the focus should go the next component instead of tabbing in the same JTextArea component. Here is the code for the CustomAction().
        public static class CustomTabAction extends AbstractAction {
            private JComponent comp;
            public CustomTabAction (JComponent comp) {
                this.comp = comp;
                this.comp.getInputMap().put(KeyStroke.getKeyStroke("TAB"), "TABPressed");
                this.comp.getActionMap().put("TABPressed", this);
            public void actionPerformed(ActionEvent evt) {
                Object source = evt.getSource();
                if (source instanceof Component) {
                    FocusManager.getCurrentKeyboardFocusManager().
                            focusNextComponent((Component) source);
        }This works for most of the cases in my applicaiton. The problem is that it doesn't work with JTable which has a custom cell editor (JTextArea). In JTextArea field of JTable, if the Tab is pressed, nothing happens and the cursor remains in the custom JTextArea exactly at the same place, without even tabbing spaces. Here is the CustomCellEditor code.
        public class DescColCellEditor extends AbstractCellEditor implements TableCellEditor {
    //prepare the component.
            JComponent comp = new JTextArea();
            public Component getTableCellEditorComponent(JTable table, Object value,
                    boolean isSelected, int rowIndex, int vColIndex) {
                // Configure Tab key to focus to next component
                CustomActions.setCustomAction("CustomTabAction", comp);
                // Configure the component with the specified value
                ((JTextArea)comp).setText((String)value);
                // Return the configured component
                return comp;
            // This method is called when editing is completed.
            // It must return the new value to be stored in the cell.
            public Object getCellEditorValue() {
                return ((JTextArea)comp).getText();
        }regards,
    nirvan

    >
    textArea.getInputMap().remove(....);but that won't work because the binding is actually defined in the parent InputMap. So I think you need to use code like:
    textArea.getInputMap().getParent().remove(...);But I'm not sure about this as I've never tried it.I tried removing the VK_TAB key from both the input map and parent input map as shown below. But I still have to press "TAB" twice in order to get out of the JTextArea column in JTable.
                comp.getInputMap().getParent().remove(
                            KeyStroke.getKeyStroke(KeyEvent.VK_TAB,0));
                comp.getInputMap().remove(
                            KeyStroke.getKeyStroke(KeyEvent.VK_TAB,0));after coding this, I am using the setFocusTraversalKeys for adding only "TAB" key as ForwardTraversalKey as given below.
            Set newForwardKeys = new HashSet();
            newForwardKeys.add(KeyStroke.getKeyStroke(KeyEvent.VK_TAB, 0));
            comp.setFocusTraversalKeys(
                        KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,newForwardKeys);
            Set newBackwardKeys = new HashSet();
            newBackwardKeys.add(KeyStroke.getKeyStroke(KeyEvent.VK_TAB, KeyEvent.SHIFT_DOWN_MASK));
            comp.setFocusTraversalKeys(
                        KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS,newBackwardKeys);The only problem that remains now is that I have to press the "TAB" twice in order to get out of the JTextArea column
    regards,
    nirvan.

  • How can I disable "return key moves to next cell" in Numbers 3?

    I want to create a new line inside one cell.  I'm using Number 3.5.2 on Yosemite.
    In Numbers 2 there was an option whether I wanted the "return key [to move] to next cell", which I was able to disable. 
    Does this feature exist in Numbers 3?  I haven't found it.  If not, does anyone know a workaround?  I could not find this question on the forums (for the current version of Numbers).

    Hi Keith,
    That feature has gone in Numbers 3.
    To insert a new line in a cell in Numbers 3, type option enter.
    Regards,
    Ian.

  • 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/>

  • Tab key doesn't navigate to a CheckBox in Firefox

    Hello,
    when I press the tab key to move to the next field, the cursor doesn't move to a checkbox. It jumps to the next "non-check-box" field. Any ideas why this happens in FireFox ? IE seems to be ok.
    Thanks,
    Andreas

    SAP Note: 1001411 may be helpful to you which says
    Firefox 2 is supported only as of SAP_BASIS 700 Support Package 12
    Abhi

Maybe you are looking for

  • How to create optional parameters in discoverer 10.1.2

    I am new to discoverer, Can any one tell me how to create optional parameters in Discoverer desktop edition in 10.1.2 I looked at the following thread which says optional parameters can be created in 10.1.2 but doesn't tell how tro create it How to c

  • How to compile c in xcode

    I have c source which creates in Linux. In xcode i need to build that using gcc. i have implemented the source to xcode, Projects create via Command Line Tools and implemented then i build it. When i build it, i have received the following error Appl

  • Why don't these videos display in Final Cut Pro X?

    I am very new to using my iMac and to final cut pro. I can't figure out why these videos don't display video in the application. They play fine with audio in FCP and they are perfectly watchable through quicktime on the Mac. I have a screenshot, just

  • Separate bash histories by terminal: what's wrong with this solution?

    Hi. I usually have several terminals open at any given time, one of which runs a screen session to which I re-attach/detach daily. It gets kind of annoying when, for example, I ssh in and want to  re-attach to screen, and I have to scroll back throug

  • Wireless downloads slower with BT Infinity

    I recently upgraded from BT Broadband (ADSL2+ with BT Home Hub 1.0) to BT Infinity. I installed and switched over to the new BT Home Hub 3 before the BT Openreach engineer came, as I was worried about how wireless networking would work as the Hub had