Hi, I see the bug was marked invalid but the behaviour is still as I described. When I select an item in a combobox using "Enter" the "Enter" key is still propagated to the window the combo is contained in. We implemented "Enter" as "Ok and save" on certain forms and by selecting the item in the combo my form is closed.
Any idea why the key event is seen by the window? Best regards, Jeroen -----Original Message----- From: [email protected] [mailto:[email protected]] Sent: woensdag 14 september 2011 8:52 AM To: Jeroen Smit Subject: [Bug 5607] Combobox doesn't stop event propagation after selecting an item by pressing "Enter" http://bugzilla.qooxdoo.org/show_bug.cgi?id=5607 Martin Wittemann <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID --- Comment #1 from Martin Wittemann <[email protected]> --- If you take a look at the implementation of the stop method, thats what stop does: stop : function() { if (this._bubbles) { this.stopPropagation(); } if (this._cancelable) { this.preventDefault(); } } So there should not be a problem here, or do I miss something? -- Configure bugmail: http://bugzilla.qooxdoo.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You reported the bug. ------------------------------------------------------------------------------ BlackBerry® DevCon Americas, Oct. 18-20, San Francisco, CA Learn about the latest advances in developing for the BlackBerry® mobile platform with sessions, labs & more. See new tools and technologies. Register for BlackBerry® DevCon today! http://p.sf.net/sfu/rim-devcon-copy1 _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
