Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

105
votes
12answers
186k views

Trigger a button click with JavaScript on the Enter key in a text box

I have one text input and one button (see below). How can I use JavaScript to trigger the button's click event when the Enter key is pressed inside the text box? There is already a different submit ...
11
votes
3answers
3k views

keyPressEvent.getCharCode() returning 0 for all special keys like enter, tab, escape, etc

My code: @Override public void onKeyPress(KeyPressEvent event) { if (event.getCharCode() == KeyCodes.KEY_ENTER) { ...
9
votes
2answers
18k views

Android - How To Override the “Back” button so it doesn't Finish() my Activity?

I currently have an Activity that when it gets displayed a Notification will also get displayed in the Notification bar. This is so that when the User presses home and the Activity gets pushed to the ...
4
votes
3answers
3k views

onKeyListener not working on virtual keyboard

I don't understand why this peace of code is not working. Only backspace and return key are detected. Listener doesn't fire for any other key. My device is Nexus One. I tried to override activity's ...
3
votes
2answers
1k views

jQuery .keyPress() - How to get value of input which triggered event?

Trying to do some jQuery validation (without the plugin - please no answers like "Just use the validate-js plugin"). I'm wiring up a client-side event handler keypress for each "required field" on ...
3
votes
2answers
2k views

Changing the default modal result of a form.showModal

In my Delphi application I have a custom Yes, No, Cancel dialogue, which will be called from the main form to confirm saving the changes made to the current file edited. This would normally be ...
3
votes
9answers
5k views

Avoid Beep sound when enter keypress in a textbox

When you create an aspx page as this one: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 ...
2
votes
2answers
34 views

I am having problems with 3+ keys pressed

My JS mini-game don't work correctly. It only records the first two key pressed. You can see the problem in this jsFiddle My code is really big, I am not sure what to put here, but I think the ...
2
votes
1answer
187 views

Trying to catch the Volume onKeyLongPress() not working

I'm trying to get my app to react to a long key press on volume down with the following code: public boolean onKeyLongPress(int keyCode, KeyEvent event) { if (keyCode == ...
2
votes
1answer
133 views

jQuery nextAll won't stop at last element?

I have a list that has keyboard support for navigation. However, there is additional jiggery pokery (which isn't inlcuded in this example) that shows and hides items in the list. After items are ...
2
votes
1answer
291 views

How to intercept key events while menu is displayed

I have already overriden the onKeyDown (int keyCode, KeyEvent event) method of my Activity in oder to log user key presses. I have further extended all Views I use in the layout and overriden the ...
2
votes
1answer
2k views

JQUERY Keypress Left/Right Navigation

I will give my Content slider the ability to work with the keypress (LEFT ARROW Key & RIGHT ARROW key) feature. I've read about some conflicts between several browsers & operation systems. ...
2
votes
2answers
376 views

Javascript calculator as users type numbers

I'm a noob at Javascript, but I'm trying to implement something on my website where users can type a quantity, and the subtotal updates dynamically as they type. For example: if items are 10 dollars ...
2
votes
4answers
3k views

Javascript fires two events - onkeypress and onclick

Problem is when I press a key over a radio button, element MyFunc fires twice - once for "onkeypress" event, another time for "click" event. Question "Why?" I need to handle this by two different ...
2
votes
5answers
2k views

How can I check the new value of a text field on keypress?

I have a single form field and I need to be able to detect when the field changes and execute some additional code using the new value of the field. I only want to execute the code if the key pushed ...
2
votes
3answers
1k views

Key down event affected by buttons

I'm new around here and i have a little problems with a C# application. I want to capture the key down event. This wasn't a problem at first but after i added some buttons to the form, the key down ...
2
votes
1answer
716 views

How to avoid the ding sound when Escape is pressed while a TEdit is focused?

In code I have developed some years ago I have been using this a lot to close the current form on pressing the Escape key at any moment: procedure TSomeForm.FormKeyPress(Sender: TObject; var Key: ...
1
vote
2answers
122 views

onkeyup or onkeypress javascript event issue - password status updates

Programming Question First (from w3 schools) The programming example way below (from W3 schools) is nice and easy, it works on their website but I'm really confused on something. ...
1
vote
1answer
40 views

How to perform keyboard shortcut in VB

I would like to know if its possible, and if so how, to use VB.NET to automate a keyboard shortcut. In the application i am developing, it receives email as a outlook addin and runs various checks ...
1
vote
4answers
64 views

action by key press

I'm designing a web based accounting software. I would like to open the "new accounting document" whenever the user press N key for example. And open "settings" whenever he/she is pressing S key. I ...
1
vote
3answers
82 views

Create a <br /> when you press Enter

I have made a textarea form where you can change your description and like in my previus question I asked if there was any way of having banned tags. But now is there any way of when you press "Enter" ...
1
vote
1answer
250 views

OnKeyListener() not executing

Would someone kindly suggest why the code in the OnKey() method is not executing. Please note that I am attempting to trigger this my hitting the "Search" button on the android key board. Here is the ...
1
vote
1answer
121 views

Trigger alert function event for text area node in Firefox Javascript XUL

I want to trigger an alert if the user reached max number of characters in the text area. Generally my plugin fill the user node values directly to my plugin text box. So, I want to generate an alert ...
1
vote
3answers
87 views

Detecting command + keystroke in Safari

I'm trying to intercept the command + keystroke in Safari. I've added an event handler as follows: document.onkeypress = handleKeyPress; function handleKeyPress(event) { if ("+" === ...
1
vote
3answers
171 views

How to check a checkbox onkeypress?

I have the following code to check a checkbox as soon as the user types something in the textbox. This works fine for a single text box. function activateCheckbox() { if ...
1
vote
1answer
43 views

How to get on keyPressed in a JPanel CTRL+m?

I'm trying to implement a JPopupMenu over a text editor component. It should be activated on CTRL+m. Can I do that inside @Override public void keyPressed(KeyEvent arg0) { } and if yes, how? ...
1
vote
1answer
247 views

How to call onkeypress event in a html page (Delphi)

How can i call onkeypress event of a textarea control in a html page using WebBrowser?
1
vote
4answers
352 views

onKeyPress Doesnt Work At All!

I have 5 click-able div tags, the div's display a yellow square with a number in. When the user clicks a square, the colour of the square changes to indicate that the clicked square is the ''active'' ...
1
vote
1answer
66 views

In WPF how can I duplicate the old WinForms OnKeyPressed functionality?

We have a WPF application where we need to detect if the user is typing something that can appear in a textbox. WinForms used to have a nice OnKeyPressed override that differed from OnKeyDown in that ...
1
vote
2answers
1k views

Call a JavaScript function by hitting enter in a textbox without global events of jQuery

I am working on a project with the goal of learning, and I am avoiding jQuery thus far to learn as much JavaScript as possible. I have been successfully using onkeypress to determine whether or not ...
1
vote
3answers
249 views

Javascript Last character missing on OnKeyPress event

function h(x) { alert(x); } <input onkeypress=h(this.value) type=text> when i press 'a' alert empty when i press 'b' after 'a' =>ab alert only 'a' and i want 'ab' when i type 'abcd' it ...
1
vote
1answer
284 views

How do I disable Firefox's “Search for text when I start typing” on pages with keyboard shortcuts?

Some web pages such as GMail and Reddit(with the Reddit Enhancement Suite) have useful keyboard shortcuts that I'd like to use. However, whenever I start typing on one of these pages, the first ...
1
vote
2answers
1k views

Why doesn't keypress handle the delete key and the backspace key

I'm not asking this because I need a work-a-around. I have one that works fine, but I want to know WHY it doesn't. Is this bug in javascript (or JQuery because I was using the JQuery .keypress ...
1
vote
2answers
226 views

JavaScript key handling and browser compatibility

I'm working on key handling in java script. I have done some research and I'd like to know whether I have a correct understanding of key handling. KeyDown/KeyUp Event The key down and key up events ...
1
vote
4answers
320 views

js backspace and counting how many digits

i have this code for counting how many digits where entered var tnnod=0; function telephone(e) { if (tnnod<10) { var key; var keychar; if (window.event) { ...
1
vote
1answer
120 views

Can jQuery dynamically change a “username” field based on a “name” field?

basically I have two input fields, "name" and "username". The idea is that the "username" field will change depending on what is entered into the "name" field - dynamically. I also need the username ...
1
vote
1answer
1k views

Delphi - OnKeyPress occurs before TStringGrid updates cell with new character

Coding in Delphi, attaching an OnKeyPress event handler to a TStringGrid: The OnKeyPress event fires before the grid cell that the user is typing into has actually updated its value with the key that ...
1
vote
1answer
1k views

How do I make pressing the Enter key cause focus to move to the cell below like Excel's default behavior?

I am using an Infragistics UltraWinGrid v9.1. I want to allow the user to enter numerical data in a cell, press Enter and then have the focus on the cell below, like you see in Excel. It appears that ...
1
vote
2answers
408 views

Javascript on second keypress

I've been wondering if there was a simple way to detect if a user presses the same character on the keyboard twice within one second. I've written some code that kind of works but it's unreliable. ...
1
vote
1answer
190 views

Excluding form fields from keypress handler assigned to body

I have a keypress handler on a web page assigned to the body element. I really do want it to be active anywhere in the web page. Or so I thought. The keypress events in textual input forms also ...
1
vote
1answer
856 views

Readonly Input field will not fire OnKeyPress in IE6

I am implementing a special behaviour for the Enter key. The problem is my ASP.net library generates a readonly field; and when users tab into this field (tabbing into it is meaningful; so I want that ...
1
vote
2answers
3k views

Javascript onkeypress delete or dot

Is there any way to find out if the user pressed the delete key or dot? It has the same keycode in FireFox.
0
votes
1answer
22 views

Status update on enter javascript

Hi I'm not very good a javascript but i am trying to do a dummy status update using javascript. If you click on the button after entering your status update it adds it to the stream. I want when the ...
0
votes
0answers
13 views

Cloning Keyboard Actions to Non-Focused Windows

I am trying to do something called multi-boxing (playing multiple characters in a game from different instances of the game running) and running into a small problem. One instance runs in Sandboxie, ...
0
votes
0answers
25 views

Enabling a Textbox within a datagrid when the text in another textbox is changed

I am writing an application in vb.net 3.5 that involves a Datagrid. There are two columns in Datagrid both of which contains a textbox. What I want to code, is to enable the textbox in one column on ...
0
votes
0answers
36 views

keypress event being called more than one

I am creating an autocomplete. My suggestion div have shown when I texting in the search textbox and I want to use down arrow and up arrow buttons on this div for selecting. I wrote a javascript In ...
0
votes
1answer
152 views

event is undefined in firefox during dojo.connect onKeyPress

I have the following declarative js/dojo code running properly in Chrome: <div dojoType="dijit.form.TextBox"> <script type="dojo/connect" event="onKeyPress"> ...
0
votes
3answers
111 views

how to differentiate between long key press and regular key press

I'm trying to override the functionality of the back key press. When the user presses it once, I want to come back to the previous screen. However, when the back key is long-pressed (for, lets say, 2 ...
0
votes
1answer
56 views

How to capture a string using onkeydown before it received by the text field

I am trying to find a way to get more than one characters pasted on html text field (input type=text), using onkeydown or onkeypress, I am NOT interested in onkeyup(it works), so please do not suggest ...
0
votes
1answer
153 views

Firefox onkeypress event not passing in event parameter

I have the following textarea HTML tag that I am inserting a runtime into the DOM (I have only shown how it looks after it is inserted) and I'm set the onkeypress event to fire as an inline attribute. ...

1 2