search for: key_tab

Displaying 12 results from an estimated 12 matches for "key_tab".

Did you mean: key_table
2007 Feb 18
11
Tabulation with ENTER key
...quot;"> On first input field an event observer catches RETURN keypress, stops event and focuses on a second input field. As you can see, this is obviously not yet an ideal solution, because we must know on which element tabulate next. It would be much nicer to just replace KEY_RETURN with KEY_TAB event. Anyone knows, how to do that? I tried with event.keyCode = Event.KEY_TAB, but unsuccessfully: <input type="text" id="id1" name="field1" value=""> <script type="text/javascript"> Event.observe(''id1'...
2006 Mar 13
0
Bug with Ajax.Autocompleter in Safari 2.0.3?
...off the startIndicator(). It seems that this is because Safari sends a 0 for the shift-tab keyCode, rather than a 9 which you would expect. I was able to fix it in my local copy of controls.js by simply adding another check for Safari and keyCode of 0 in addition to the existing checks for KEY_TAB and KEY_RETURN. Has anyone else seen this? It''s probably worth a bug report for Safari too if this is really what''s going on. Thanks, Matt
2006 Nov 04
0
Prototype observe issues
...;t have a windows box to test on right now so not sure about IE) but it does not work at all in Firefox. The alert box is supposed to appear when the letter a is pressed on the page. (I have prototype loaded). The wierd thing is if i change the event.keyCode == 97 to event.keyCode == Event.KEY_TAB firefox works. I tried using UJS at one point and had the events working in Safari again by assigning body:keypress the above action but firefox hated that completely. I also need to be able to remove the observer when I make a call to RedBox plugin which opens up a form. I can do this in s...
2011 Apr 01
0
[GIT PULL] elflink cmdline
...7 @@ #include "getkey.h" #include "menu.h" #include "cli.h" +#include "config.h" static jmp_buf timeout_jump; @@ -394,6 +395,26 @@ const char *edit_cmdline(const char *input, int top /*, int width */ , redraw = 1; } break; + case KEY_TAB: + { + const char *p; + size_t len; + + /* Label completion enabled? */ + if (nocomplete) + break; + + p = cmdline; + len = 0; + while(*p && !my_isspace(*p)) { + p++; + len++; + } + + print_labels(cmdline, len); + redraw = 1; + break; + } default...
2014 Sep 06
0
keystrokes
Ady <ady-sf at hotmail.com> writes: >> Ady <ady-sf at hotmail.com> writes: >> >>>> On Sat, Sep 6, 2014 at 8:18 AM, Ady <ady-sf at hotmail.com> wrote: >>>> >>>>> What actions are _supposed_ to be triggered by each of: >>>>> >>>>> [Ctrl-J] >>>>> [Ctrl-M] >>>>>
2014 Sep 06
2
keystrokes
> Ady <ady-sf at hotmail.com> writes: > > >> On Sat, Sep 6, 2014 at 8:18 AM, Ady <ady-sf at hotmail.com> wrote: > >> > >>> What actions are _supposed_ to be triggered by each of: > >>> > >>> [Ctrl-J] > >>> [Ctrl-M] > >>> > >>> in the Syslinux command line in version 6.03-pre20? >
2011 Feb 17
5
[PATCH 0/4] Reduce core size
From: Matt Fleming <matt.fleming at linux.intel.com> These patches are based on the elflink branch. This set of patches is my attempt at moving the command-line interface functionality out of the core and into an ELF module to reduce the size of the core. The most interesting patch is [PATCH 4/4] which moves the cli code out of core/elflink and into com32/elflink/modules. [PATCH 4/4] is
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...erlapping: function() { Position.clone(this.update, this.iefix, {setTop:(!this.update.style.height)}); this.iefix.style.zIndex = 1; @@ -150,15 +150,15 @@ Autocompleter.Base = Class.create({ Event.stop(event); return; } - else - if(event.keyCode==Event.KEY_TAB || event.keyCode==Event.KEY_RETURN || + else + if(event.keyCode==Event.KEY_TAB || event.keyCode==Event.KEY_RETURN || (Prototype.Browser.WebKit > 0 && event.keyCode == 0)) return; this.changed = true; this.hasFocus = true; if(this.observer) clearTim...
2009 Jul 20
9
Upgrade server to run on Rails 2.3.2/F11
Note that one of the 8 patches (#6) will be sent separately in reply to this email, as some of the replaced lines are too long, so git won't let me send the email. However, there is nothing wrong with that patch, and it should be applied in the sequence listed below. Note also that I assume this will be tested on a clean f11 install, rather than an upgrade of an existing ovirt server
2011 Mar 09
14
[PATCH 00/12] elflink shrinkage
From: Matt Fleming <matt.fleming at linux.intel.com> This is a series of patches that, * shrink the core by moving things into an ldlinux ELF module * begin wiring up some of the C versions of various functions The core now only contains essential code and loads the ldlinux module to do everything else, like providing a command line interface and loading kernels. The config file parsing
2007 Oct 24
16
PATCH 0/10: Merge PV framebuffer & console into QEMU
The following series of 10 patches is a merge of the xenfb and xenconsoled functionality into the qemu-dm code. The general approach taken is to have qemu-dm provide two machine types - one for xen paravirt, the other for fullyvirt. For compatability the later is the default. The goals overall are to kill LibVNCServer, remove alot of code duplication and/or parallel impls of the same concepts, and
2011 Apr 16
20
[PATCH 00/20] Switch to ELF modules
From: Matt Fleming <matt.fleming at linux.intel.com> This series fixes some bugs and switches the elflink branch to be entirely ELF modules. It applies on top of, http://syslinux.zytor.com/archives/2011-April/016369.html The deletions in the diff stat below are mainly from deleting com32/elflink/modules (finally!). Now there should be no duplicate code because we don't need COM32 and