Tagged Questions
1
vote
2answers
52 views
How to get when user press 'W' with 'shift'
I want to know when user press W with shift. I am not getting any logic for this. Kindly suggest.
<head>
<script type="text/javascript" src="jquery-1.8.3.js"></script>
...
0
votes
1answer
62 views
Wicket call method after pressing enter
In my Wicket application I would like to call a method by clicking on a button. I googled and found some solutions for wicket forms, but no easy solutions for panels without a form. Is there a easy ...
0
votes
2answers
77 views
Transform jquery listener to javascript listener
I have such code:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
...
0
votes
0answers
93 views
ESC Keylistener to Reset Style
Longtime stackoverflow lurker, stepping into the light so I can ask a really stupid question - sorry.
I don't know javascript. At all. But, while happily working away I discovered that I wanted to ...
2
votes
1answer
228 views
Keydown for special chars like öüä fires 2 times and ouputs char without ' ¨ '
I have a very strange problem with special keys on Safari on Mac.
The context is a bit difficult to explain, so I'll just describe the problem and hope somebody has an idea or guessing, to point me ...
2
votes
1answer
428 views
Unable to write Enter key listener with yui(javascript)
I have a simple scenrio in which, Enter key press should trigger the submit on the dialog
Sample code for the dialog
sampleDialog = new YAHOO.widget.Dialog("sampleDialogContent", {
...
1
vote
2answers
3k views
Find the first character of input in a textbox
I am stuck in implementing the following:
User starts typing in a textbox.
The javascript on page captures the first character typed, validates that it is an english alphabet (a-z,A-Z) and converts ...
0
votes
1answer
818 views
stopPropagation not working for KeyListener in YUI 2.7
I have created a new YAHOO.util.KeyListener to attach to a specific element and have also created another new YAHOO.util.KeyListener to attach to the entire document. They are both associated with ...
7
votes
2answers
3k views
Catching Tabs in TextArea
Does anyone know a cross-browser, reliable solution for catching presses of the tab-key in a textarea field, and replacing (in the correct position) 4 spaces? The textarea is being used to input an ...
1
vote
1answer
1k views
How do I have YAHOO.util.KeyListener disabled when an input element is focused?
I have a MenuBar setup with YUI's MenuBar widget, and I have a YAHOO.util.KeyListener attached to 'document' to get quick keyboard access to the menus and submenu items (e.g. 's' to open the Setup ...