Tagged Questions

The ENTER/RETURN key on the keyboard.

learn more… | top users | synonyms

11
votes
7answers
2k views

Reliable way to know when android soft keyboard resigns (callback that works on every phone)

We are working on our first android app and it has been a very enjoyable experience so far. It is almost complete, but before release we are having some considerations ,mainly about android soft ...
8
votes
10answers
8k views

In IE8 enter key in a form does not work

I have a problem that in IE8 the enter does not work to submit a form. I have generated a test page to expose this problem. It seems that displaying the form in the onLoad function disables results ...
6
votes
2answers
1k views

Allow Enter key to login in asp.net?

I have a standard asp:login control: <asp:Login ID="mbLogin" runat="server" TitleText="" DestinationPageUrl="~/Default.aspx" PasswordRecoveryText="Forgot your password?" ...
5
votes
5answers
2k views

Trap the enter key, but not when choosing the browser's autocomplete suggestion

I have some textboxes on a page and I want to click a link when the user presses enter in any of them. I can easily trap the enter button using javascript (by looking for 13 in event.keyCode and ...
4
votes
1answer
412 views

Autocomplete on enter (but NOT in auto-select)

I have a simple input field and on enter I want to submit it (the form that it is in). I am using jQuery but not any autoComplete extension, so it's just the default browser one: $('#searchfield') ...
4
votes
4answers
7k views

Call a specific button onClick event when the enter key is pressed C#

I'm trying to get a specific asp:button onclick event to fire when I press the enter key in a specific asp:textbox control. The other factor to be taken into account is that the button is within a ...
3
votes
5answers
99 views

Using scanf for question, allow user to skip question

I'm working on a final project for a C programming course. The project is to create a database to store drug information. I've completed all of the elements and now it's down to fine tuning ...
3
votes
3answers
348 views

Can't find asp:textbox in Javascript

I am trying to add the onkeydown attribute to an asp:textbox. For some reason my code can't find the textbox that is inside a loginview. Am I doing something wrong? <script ...
2
votes
1answer
89 views

MVC3 input button triggered by Enter button

I have an ASP.NET MVC 3 C#.NET web application and I want the Enter button to trigger a particular Save button on my form. How would I do that?
2
votes
5answers
86 views

The .val() of a textarea doesn't take new lines into account

The .val() property of an item in jQuery for a <textarea> doesn't seem to work with new lines. I need this function as the text-area is meant to recognize the enter key and display it as a ...
2
votes
1answer
339 views

Selenium-IDE: How to simulate non-printable keys (ENTER, ESC, Backspace)?

What is the exact HTML code to simulate ENTER, ESC, BACKSPACE and DOWN in Selenium IDE 1.3.0? typeKeys didn't work nor did this: <tr> <td>keyDown</td> ...
2
votes
1answer
63 views

jQuery Press Enter Not on Class

I was wondering how to press enter but NOT when a particular class exists on the element being targeted ? jQuery("#input").keypress(function (e) { if (e.keyCode == 13 && ...
2
votes
0answers
214 views

Android disable Enter key in soft keyboard

Can anyone tell me how to disable and enable the "Enter" key in the soft keyboard? Thanks in advance.
2
votes
3answers
547 views

Android EditText listener enter

I have a EditText ans I put an OnEditorActionListener to do something when enter is pressed. My silly question is: how to make the ENTER key green like in Maps?
2
votes
2answers
829 views

contentEditable - Firefox <br /> tag

Firefox inserts a <br /> tag on press enter whereas the other browsers are adding either a <p> or <div>. I know that chrome and safari are inserting the same tag of the firstchild of ...
2
votes
1answer
356 views

How do you change the return key text in Mobile Safari keyboard without the form tag?

I would like to change the the "return" button text on the Mobile Safari keyboard when my input element is focused. I know you can do this: <form action="somewebsite.com"> <input ...
2
votes
1answer
275 views

C#: How to prevent a textbox' content from being scrolled up on Enter?

I'm trying to resize at run-time a textbox' height when the user presses the "Enter" key. The resizing works well, but the problem arises from the fact that pressing "Enter" brings the text "up" by ...
2
votes
4answers
822 views

Write to textarea when enter key is pressed?

I have a textarea, which will handle output, and a textfield which will handle user input. Focus will be entirely on the input field. I can't make it so that the user input field will add text when ...
2
votes
4answers
592 views

How do I submit forms with the Enter key without a submit button

I have jQuery go though all the submit buttons with the class button, and turn them each into an anchor element with the class button. $("input.button").each(function(i) { var anchorButton = ...
2
votes
2answers
452 views

Enter key with multiple forms on a website

I have a website with 2 forms. One for search and another for the login. When I use the enter key to submit, the search is always called because it is the first form on the page. What I want to do is ...
2
votes
4answers
4k views

Enter Key Press behave like Submit in JSF

How to make Enter Key Press behave like Submit in JSF. It works with InputBoxes; but not with inputSecret boxes
2
votes
3answers
4k views

JQuery - AJAX dialog modal, can't hit enter key to submit form

On a website I'm working on, when you click sign on, a jquery dialoge modal pops up, but you have to click on OK to submit the form, you can't just hit enter. I need it to be able to have enter work ...
2
votes
3answers
349 views

Detect when link is activated - either by click or tab and enter

Just wondering if anyone knows of a way that wiring up jquery to run a function for when a user clicks on a link or tabs to a link and hits enter. I want to intercept that activation of a link and ...
2
votes
3answers
312 views

How to prevent a Winforms control from listening to the keyboard

For a certain inputform, I'd like to make it possible to do input with the keyboard. I know how to read the keys through KeyPressed and KeyUp, but the problem is that when a control has got the focus ...
1
vote
1answer
96 views

End a C program with the enter key

I am trying that when the user hits the enter key the program should end. for some reason it doesn't seem to work. when i use c is not equal to enter key it takes in and extra integer in c(last ...
1
vote
2answers
138 views

Wait until user presses enter in C++?

waitForEnter() { char enter; do { cin.get(enter); } while ( enter != '\n' ); } It works, but not always. It doesn't work when an enter is pressed just before the function is ...
1
vote
1answer
29 views

Enter key behavior in wx.grid

Googling a lot without any results... The default behavior of the grid while pressing the enter key is moving cursor down. But I have to make the cell editor opened in the current cell. I can easily ...
1
vote
1answer
42 views

Alternate focus between elements of JOptionPane

I am trying to show a JOptionPane with a JTextField, which has initial focus, in it and, as soon as the user press ENTER, I want it to perform an action with the text entered in the text field. I did ...
1
vote
0answers
15 views

How to drop Enter, when I'm using Scanner?

I want to write a program where you don't need to press "enter", when I'm using Scanner. Is there any way to avoid that? It supposed to be very simple program, but every time I am write something, I ...
1
vote
2answers
208 views

Spark Button - why doesn't pressing the enter key fire click event?

I'm a little confused as to why this isn't the default behaviour? So, how do I detect the enter key being pressed on my button and fire the click event handler? (For example on a TextInput field ...
1
vote
3answers
77 views

Input Button as SUBMIT

I need to have a form submitted using the enter key, however, I have to use a BUTTON instead of SUBMIT as the type in order for the page to not refresh. How can I get my BUTTON to act as a SUBMIT and ...
1
vote
2answers
463 views

Keep focus on textbox after pressing enter

How can I keep the focus in a textbox after pressing enter in a VBA form? This code adds the text to a Listbox and I want to keep the focus on the textbox to get ready to receive another item. When ...
1
vote
3answers
206 views

How to instert a new line in strings in Android

This may seem like a stupid question, but I've been searching and can't find an answer. I'm creating an android application and within it there is a button that will send some information in an ...
1
vote
4answers
674 views

JQuery: Keyup, how do I prevent the default behavior of the arrow (up & down) and enter key?

JavaScript (JQuery) $('input').keyup(function(e) { var code = e.keyCode ? e.keyCode : e.which; switch(code) { case 38: break; case 40: break; ...
1
vote
1answer
368 views

jquery keyup causes page to refresh

So working with an area with enter should add a result, it works but it also refreshes the page afterwards. var targetX, targetY; var tagCount = 0; $(function(){ $('#tag').live('click', function(){ ...
1
vote
1answer
321 views

Handle Enter Key for search and login page

I have an ASP.Net 3.5 in VB.Net page that uses a master-page and has several pages it uses to display content. On the master-page their is a search text-box for the site so that shows up on all the ...
1
vote
3answers
68 views

circumvent asp event handlers

I want to cause a browser redirect by changing the value of "window.location" in some javascript in a VB.Net page. The code below works correctly when I click the "Go" button: The alert appears and ...
1
vote
1answer
493 views

Login by hitting enter key in asp.net Login control

I must have read a hundred forum and blogposts about this, all talking about placing a Panel and setting the Default button to the Login button, or setting the Default button in the Form. I've tried ...
1
vote
2answers
511 views

jQuery Chrome - disable enter key

I've got a tutorial based web page, where users can advance to the next tutorial page by using arrow href buttons (only if they complete some tasks). Also on most pages the enter key will advance you ...
1
vote
2answers
294 views

How do I use the Enter key as an event handler (javascript)?

im trying to make my own chat... so i have an input text field, the submit button, isn't even submit, its just a button.... so when the enter key is pressed, i need the value of the input field to ...
1
vote
1answer
124 views

Form not submitting when there is more than one input text

This is a quite simple issue to describe. This was tested on Firefox (3.6), IE (8) and Chrome (8). Here is the file doesnotsubmit.html <form> <input /> <input /> ...
1
vote
2answers
942 views

shell command equivalent to pressing enter key on keyboard

I want to add a shell command in my bash shell script so that when the script is executed, it does an action equivalent to pressing enter key on the keyboard and then execute the rest of the commands ...
1
vote
0answers
532 views

Getting “Enter Network Password” prompt on Windows 7 when clicking on embedded audio link

We have a web app that shows a list of audio links to play. I've cleaned it up to just show the most basic page, without the Ajax calls or jQuery code: <object > <param name="url" ...
1
vote
1answer
446 views

Jquery autocomplete respond to enter key

I'm using the jquery autocomplete UI widget, for example: var names = ["John", "Jack", "Nick", "Tom", "Joyce", "Nancy"]; $("#nameInput").autocomplete({ source: names }); I'd like it to behave ...
1
vote
1answer
314 views

Detect return key in textarea and if a certain string is present write a line to textarea [javascript]

Basically have a large textarea, and I want to be able to do a few things with it; Detect when the user presses "enter" to go to a new line, and When enter is pressed, if the line contains a ...
1
vote
1answer
392 views

Handle Enter Key on Website (ASP and VB)

So I have a website with multiple asp controls. When I press enter inside by login form, the search function runs because it's the first thing found on the page. How would I handle the enter button ...
1
vote
2answers
670 views

Using enter key to check CheckBoxes in C#.NET

I want to use Enter key instead of Space key to check the checkboxes.. private void Form2_KeyDown(object sender, KeyEventArgs e) { CheckBox c1 = this.ActiveControl as CheckBox; ...
1
vote
1answer
1k views

How do you bind Enter and Esc keys to OK and Cancel buttons respectively in a WPF dialog?

My WPF app uses a dialog with Ok and Cancel buttons. I would like to bind the Enter key to the Ok button and the Esc key to the Cancel button. Seems like it should be a simple thing to do.
1
vote
1answer
841 views

VB.NET 2008 - How Do I Make Button.click Event Perform both the enter and period(del) keys on the numerical keyboard?

How Do I Make Button.click Event Perform both the enter and period(del) keys on the numeric keypad? Code snippet: Private Sub frmCalc_KeyDown(ByVal sender As Object, ByVal e As ...
1
vote
5answers
3k views

Javascript : Enter Key Press

Good Morning... I am using java script in each page to trigger the Enter key press Event inside the textbox. It is working fine. Now i want to place the code in the .js file for global access. ...

1 2 3