vote up 3 vote down star
3

I have a form with a textbox and a button. IE is the only browser that will not submit the form when Enter is pressed (works in FF, Opera, Safari, Chrome, etc.). I found this javascript function to try to coax IE into behaving; but no avail:

function checkEnter(e){
    var characterCode
    if (e && e.which) {
        e = e
        characterCode = e.which
    } else {
        e = event
        characterCode = e.keyCode
    }
    if (characterCode == 13) {
        document.forms[0].submit()
        return false
    } else {
        return true
    }
}

Implementation:

searchbox.Attributes("OnKeyUp") = "checkEnter(event)"

Any advice?

EDIT: This page on CodeProject outlines what Dillie was saying, and it works perfectly.

flag

78% accept rate
So, your form has no buttons at all? – James Nov 6 '08 at 22:23
Sorry, it has a button as well. Thanks for pointing that out. – Anders Nov 10 '08 at 13:44

6 Answers

vote up 10 vote down check

The other thing I have done in the past is wrap the form area in a Panel and set the DefaultButton attribute to the submit button you have. This effectively maps the enter key to the submission as long as you have a form element in focus in the panel area.

link|flag
will adding a panel mess with my formatting? – Anders Nov 6 '08 at 22:16
Nope, it wont (answered my own question). This worked, thanks! :D – Anders Nov 6 '08 at 22:21
1  
Glad it worked. The nice caveat with this too is that if you have multiple forms on the page (say various options to search by), you can wrap a panel around each one of them and then the proper submit button is properly "mapped". – Dillie-O Nov 6 '08 at 22:33
Good answer. This is something that I think not many asp.net developers know about. – webdtc Nov 7 '08 at 0:28
Definitely a great answer, upvote this guys! – Anders Nov 10 '08 at 13:43
show 1 more comment
vote up 3 vote down

Just create a text input in a hidden div on the page. This will circumvent the IE bug.

Example div:

    <!-- Fix for IE bug (One text input and submit, disables submit on pressing "Enter") -->
    <div style="display:none">
        	<input type="text" name="hiddenText"/>
    </div>
link|flag
I great solution as this is accessible unlike the panel solution which relies on javascript – skyfoot Aug 20 at 11:07
vote up 2 vote down
// Use the following Javascript in your HTML view
// put it somewhere between <head> and </head>

    <script language="JavaScript" type="text/javascript"><!--
    function KeyDownHandler(btn)
    {
      if (event.keyCode == 13)
      {
        event.returnValue=false;
        event.cancel = true;
        btn.click();
      }
    }
    // -->
    </script>

    // Put this in your TextBox(es) aka inside <asp:textbox ... >
    onkeydown="KeyDownHandler(ButtonID)"
link|flag
Thanks for the input, it throws a lovely 'Object doesn't support this property or method' error, however :( – Anders Nov 6 '08 at 22:12
This solution worked great for a similar problem I had in a jsp page. – oneBelizean Dec 11 '08 at 17:53
vote up 0 vote down

Does it use a GET instead of a POST? Is the URL too long? I've seen that...

link|flag
vote up 0 vote down

Basically, a form needs either a button, input type="submit" or an input type="image" to enable the builtin behaviour to submit a form on enter. You shouldn't need a javascript to submit it.

link|flag
vote up 0 vote down

When using display:none, IE won't see the button and therefore won't be able to use it to submit the form. Instead, you could use z-index and absolute positioning to hide it under another element, e.g. with the style:

position:absolute; bottom: -20px; left: -20px; z-index: -1;

Now it'll still be there, usable by IE, but hidden beneath another element.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.