search for: onkeyup

Displaying 20 results from an estimated 20 matches for "onkeyup".

2007 Nov 20
4
onkeyup issue while you create new element
...uestion please help me out as i have stucked on this for 2 hours (searching, trying, googling and etc) var td6Input = td6.appendChild(new Element(''input'', {size: "2", maxLength: "2", name: "txtDateOfServDay"+seq, id: "txtDateOfServDay"+seq, onkeyup: "KeyButtonPress(this, event, 2)", onchange: "checkDay(this)"})); the onkeyup will call my KeyButtonPress function but somehow at this case it doesn''t seem working. did i get the syntax incorrect? --~--~---------~--~----~------------~-------~--~----~ You received this...
2009 Jun 29
0
Problem with 2.3 nested forms and new elements
...un artículo</option> <option value="1">Bombillas</option> <option value="2">Cebador</option></select></td> <td><input id="factura_lineas_attributes_0_unidades" name="factura[lineas_attributes][0][unidades]" onkeyup="sayhola(this)" size="30" type="text"></td> <td><input id="factura_lineas_attributes_0_precio" name="factura[lineas_attributes][0][precio]" size="30" type="text"></td> <td><a href="#&...
2006 May 21
5
no enter/click app [barcode reader]
I there We are making an app using barcode readers and it would be great if we did not have to hit enter or click each time an product is scanned, does anuybody has eny idea about how to achive this? Thanks in advance
2011 Mar 03
6
Show a value in view
...Now in my controller method I am taking that user''s name using @posted_by_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 %>:</textar...
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
2008 Jun 04
1
new to prototype : Ajax.Updater
...m method="get" action="greeting.php" id="greeting-form"> <div> <label for="greeting-name">Enter your name:</label> <input id="greeting-name" name="greeting-name" type="text" onkeyup="greet()"/> <input id="greeting-submit" name="greeting-submit" type="submit" value="Greet me!" /> </div> <div id="greeting"></div> </form> </body> </html> the ph...
2008 May 24
3
Searching the wiki
Hi, If you type a keyword and press Enter in the search field on the wiki, it does a title-search by default which is very limited. I tried looking for information about atheros or madwifi and couldn't find anything. Then I tried ipw2200 (I knew it existed because I created it) and no results still. I had to ask Ralph to see if the index was old, only to find out that there is a
2006 Mar 29
0
auto_complete_on_select don''t work correctly
...nt.getElementById(''inputlong'').value = selectedElement.childNodes.item.getElementsByTagName(''span'')[1].innerHTML; } <input name="comune" class="autocomplete" id="autocomplete" size="20" type="text" onkeyup="new Ajax.Autocompleter(''autocomplete'', ''autocomplete_choices'', ''list.php'', {minChars: 2,afterUpdateElement: auto_complete_on_select} );"/> <br/> lati: <input id="inputlat" type=...
2007 Dec 04
0
TextAreaWithStatus 1.0 released
...reaWithStatus 1.0 has been released http://code.google.com/p/text-area-with-status/ == Overview == This plugin is extending builtin text_area and text_area_tag helpers with the ability to display chars left up to a specified limit. Basically it turns this: <%= f.text_area :description, :onkeyup => "limit_chars(this, 100, $ (''chars_left''))" %><br /> <span id="chars_left">You have <%= 100 - @object.description.length %> characters left. </span> into this: <%= f.text_area :description, :max_chars => 100 %&gt...
2006 Mar 01
1
prototype.js ajax w/ post - how to send ''+'' character
...boolean search. so an example search string is ''+neoflex +standard +output -green'' the problem is something is filtering the ''+'' and i can figure out to to send it. here is the html and js that i am using. <input type="text" id="prodid" onkeyup="autosearch(this)" name="prodid" /> function autosearch(element) { new Ajax.Request(''ajax-search.php'', { method: ''post'', postBody: element.name + ''='' + escape(element.value), onComplete: showResponse }); return f...
2007 Oct 14
0
libswfdec/swfdec_as_strings.c libswfdec/swfdec_player.c
...c/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_STRING ("...
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
2011 Mar 09
1
Javascript call from view.
..."width:100%;"> <div style="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'&...
2013 Nov 14
10
Render to clear textbox
...work (i.e. it doesn''t clear the textbox). Does anyone know of a simpler way to do this that might work? Thanks, RVic, partial below: <input id="channel_channelnote_note" name="channel[channelnote_note]" size="15" type="text" value="" onKeyUp="txtBox_onChange(this);" onClick="txtBox_onChange(this);"/> <div class="auto_complete" id="channel_channelnote_note_auto_complete"></div> <script type="text/javascript"> //<![CDATA[ var channel_channelnote_note_auto_compl...
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
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
...swfdec/swfdec_event.c @@ -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_...
2020 Jun 27
0
[centos/centos.org] branch master updated: Updated page for AWS AMI images ID and link
...) + * CentOS Linux 7 (x86_64 and aarch64) + +You can search for architecture or region through search bar. + +Please note that you can also directly use then the "Deploy Link" function to deploy in specific region, one click away. <input type="text" id="myInput" onkeyup="myFunction()" placeholder="Search for image..."> -- To stop receiving notification emails like this one, please contact the administrator of this repository.
2007 Nov 12
15
If form changed ask if you really want to exit page...
First things first: Hi all! I''ve been sucked into prototype and script.aculo.us develpment thanks (because of?) the Symfony PHP framework... I''d like to implement a feature on some admin pages, but I can''t seem to find the right search term to google it; I want to ask the user to confirm exit of a page, if she has changed anything on the forms displayed on it. I have
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
..._CONSTANT_STRING ("onEnterFrame"), + SWFDEC_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_CONSTA...
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):