search for: onkeydown

Displaying 14 results from an estimated 14 matches for "onkeydown".

Did you mean: keydown
2004 May 22
10
Tabbing between Notebook pages
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: wxTony.rbw Type: application/octet-stream Size: 10436 bytes Desc: not available Url : http://rubyforge.org/pipermail/wxruby-users/attachments/20040522/9c1889d0/wxTony.obj
2011 Mar 03
6
Show a value in view
...y_name = params[:posted_by] In my view my text area looks like this <textarea name="message" id="message" maxlength ="400" style="overflow:auto;width:100%;height: 56px ;"onkeyup="checkPostFieldLength(message,''remaining'', 400);"onkeydown="checkPostFieldLength(message,''remaining'', 400);"onmouseout="checkPostFieldLength(message,''remaining'', 400);">@< %=h @posted_by_name %>:</textarea> The text within <% %> is the username I am trying to paste by default ins...
2006 Jul 31
6
Popup Calendar and DateBoxEngine and Change Made ...
...ton ID) help : "#{calendar_ref}Help", // trigger for the help menu align : "Bl", // alignment (defaults to "Bl") singleClick : true }); document.getElementById("#{calendar_ref}").onkeydown = dateBoxKeyListener </script> </div> EOL end -- Posted via http://www.ruby-forum.com/.
2007 Oct 14
0
libswfdec/swfdec_as_strings.c libswfdec/swfdec_player.c
libswfdec/swfdec_as_strings.c | 1 + libswfdec/swfdec_player.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) New commits: commit 708448156a9973c48b2f86ec3f8f6ece4e2ab8fa Author: Pekka Lampila <pekka.lampila at iki.fi> Date: Sun Oct 14 17:58:14 2007 +0300 Call onKeyDown and onKeyUp on Key object, not Stage object diff --git a/libswfdec/swfdec_as_strings.c b/libswfdec/swfdec_as_strings.c index d9b85cc..89431a3 100644 --- a/libswfdec/swfdec_as_strings.c +++ b/libswfdec/swfdec_as_strings.c @@ -396,6 +396,7 @@ const char swfdec_as_strings[] = SWFDEC_AS_CONSTANT_ST...
2011 Mar 09
1
Javascript call from view.
...;width: 75%;float:left;"> <textarea name="message_reply" id="message_reply" maxlength ="400" style="overflow:auto;width: 100%;height:56px ;"onkeyup="checkPostFieldLength(message,''remaining'', 400);"onkeydown="checkPostFieldLength(message,''remaining'', 400);"onmouseout="checkPostFieldLength(message,''remaining'', 400);"onclick="showName(''postedby'',''message_reply'');"></textarea>...
2007 Feb 18
11
Tabulation with ENTER key
Dear all, I think this can be interesting for others too. For a while I tried to solve that problem - how to tabulate with ENTER/RETURN key too and not only with TAB. You know the problem - you are entering a lot of numbers from numeric keypad but you need to go far left to press TAB. This prevents one-hand data entry and prohibits web apps to be used by accountants, for instance. Here is a
2009 Jul 16
2
[PATCH server] updated anyterm/ovirt integration
...quot;Connection is not open"); + return; + } + open=false; + var resp = sync_load(url_prefix+"anyterm-module","a=close&s="+session+cachebust()); + handle_resp_error(resp); // If we get an error, we still close everything. + document.onkeypress=null; + document.onkeydown=null; + window.onbeforeunload=null; + var e; + while (e=frame.firstChild) { + frame.removeChild(e); + } + frame.className=""; + if (on_close_goto_url) { + document.location = on_close_goto_url; + } +} + + +function get_anyterm_version() { + var svn_url="$URL: http://svn...
2006 Apr 21
11
Phone Numbers in Rails/MySQL
Is there any easy way to make a fancy looking form to take phone numbers. Something that looks like this: [ ] - [ ] - [ ] ext: [ ] Then when you submit it it''s combined into one string in the database. Optimally it would auto-switch from field-to-field after you fill each field. Has anyone seen anything like this in Rails? Thanks, Adam -- Posted via
2008 Jan 19
10
lose focus event?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I''m new to wxruby, and I haven''t found any answer with google: Is there a way to capture a lose focus event on controls, such as a combo box? All my experiments show events when changing the text, but not when leaving the box. I want to make a combobox that autocompletes if I press tab (or down arrow or something), but if I
2006 May 23
6
Autocompleter - up arrow moves cursor to start of input box
When using the autocompleter and scrolling through options, if you press the up arrow key the input field cursor moves backward. Some of my users have reported that they find this very distracting. Does anyone know why this happens, or where in the code I could fix it? Steps to recreate: 1. Go to http://demo.script.aculo.us/ajax/autocompleter 2. Type in a letter (or two or three) 3. Arrow down
2007 Mar 07
0
11 commits - libswfdec/swfdec_event.c libswfdec/swfdec_event.h libswfdec/swfdec_js_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_scriptable.c libswfdec/swfdec_scriptable.h libswfdec/swfdec_script.c libswfdec/swfdec_sprite.c libswfdec/swfdec_sprite.h
...-41,6 +41,75 @@ struct _SwfdecEventList { GArray * events; }; +static const char *event_names[] = { + "onLoad", + "onEnterFrame", + "onUnload", + "onMouseMove", + "onMouseDown", + "onMouseUp", + "onKeyUp", + "onKeyDown", + "onData", + NULL, + "onPress", + "onRelease", + "onReleaseOutside", + "onRollOver", + "onRollOut", + "onDragOver", + "onDragOut", + NULL, + NULL +}; + +const char * +swfdec_event_type_get_name (Swfde...
2006 Jun 29
11
Autocompleter without a default choice
Hi, I have an ajax auto completer for a text field in a form. All''s good. Unfortunately, I also want the form to be submitted when the user hits ''return'' in the text field. This combination of circumstances means that if the user is typing his entry and then hits return to submit it is possible that dang auto completer will pop up and complete his entry for even if he
2007 Apr 04
0
Branch 'as' - 17 commits - configure.ac doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt doc/swfdec.types libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_loader.h
...EC_AS_CONSTANT_STRING ("onUnload"), + SWFDEC_AS_CONSTANT_STRING ("onMouseMove"), + SWFDEC_AS_CONSTANT_STRING ("onMouseDown"), + SWFDEC_AS_CONSTANT_STRING ("onMouseUp"), + SWFDEC_AS_CONSTANT_STRING ("onKeyUp"), + SWFDEC_AS_CONSTANT_STRING ("onKeyDown"), + SWFDEC_AS_CONSTANT_STRING ("onData"), + SWFDEC_AS_CONSTANT_STRING ("onPress"), + SWFDEC_AS_CONSTANT_STRING ("onRelease"), + SWFDEC_AS_CONSTANT_STRING ("onReleaseOutside"), + SWFDEC_AS_CONSTANT_STRING ("onRollOver"), + SWFDEC_AS_CONST...
2007 Nov 15
2
Changes to 'refs/tags/0.5.4'
Tag '0.5.4' created by Benjamin Otte <otte at gnome.org> at 2007-11-15 10:12 -0800 release 0.5.4 ("Turkish Cycling Federation") -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQBHPBurvMv5VCdLq8QRAj1KAJ40NHRRS3gKyJjSjyyoH7gDaGi/tQCeOha/ R5PF4bZQqmSdJ64t8EbD4cA= =8qBy -----END PGP SIGNATURE----- Changes since the dawn of time: Benjamin Otte (40):