Re: [qooxdoo-devel] Problem with focus, Window and Popup

2010-05-25 Thread Christian Hagendorn
Hi, the focus call on a window widget instance has no effect to set a window active (blue title bar). The window API has a property for that, here an example: popup.addListener("disappear", function(e){ window.setActive(true); button1.focus(); }); This should do what you are expect. Cheers, Ch

[qooxdoo-devel] Problem with focus, Window and Popup

2010-05-22 Thread rsantiagopaz
Hi. I have this little problem controlling the focus between windows and popups. Try this example. When click on "Close popup" button, why the focus return to "Show popup" button, but not the window? Really, the focus return to window, but the window's title bar remains white, not blue. When click

Re: [qooxdoo-devel] Problem with focus in text field

2009-07-22 Thread Martin Wittemann
onika Falk, Software Specialist > Tieto > > Message: 1 > Date: Wed, 22 Jul 2009 08:17:33 -0400 > From: Gene Amtower > Subject: Re: [qooxdoo-devel] Problem with focus in text field > To: qooxdoo Development > Message-ID: <1248265053.4319.276.ca...@pcb-bench-01> >

Re: [qooxdoo-devel] Problem with focus in text field

2009-07-22 Thread monika.falk
Message: 1 Date: Wed, 22 Jul 2009 08:17:33 -0400 From: Gene Amtower Subject: Re: [qooxdoo-devel] Problem with focus in text field To: qooxdoo Development Message-ID: <1248265053.4319.276.ca...@pcb-bench-01> Content-Type: text/plain; charset="us-ascii" Instead of using a textfield,

Re: [qooxdoo-devel] Problem with focus in text field

2009-07-22 Thread Gene Amtower
Instead of using a textfield, maybe you could use the spinner widget with the min set to "0" and the max set to "100". Have you looked at that widget for this purpose yet? HTH, Gene On Wed, 2009-07-22 at 13:43 +0200, Martin Wittemann wrote: > Hello Monika, > > > as i tried your example in

Re: [qooxdoo-devel] Problem with focus in text field

2009-07-22 Thread Martin Wittemann
Hello Monika, as i tried your example in the playground, i hav seen it working clicking out of the widget the first time. But when I click the second time, the focus is lost. Thats because of qooxdoo's property system. You registered the listener, which sets the focus back to the textfie

[qooxdoo-devel] Problem with focus in text field

2009-07-22 Thread monika.falk
Hi Everyone I am having problem with focus handling in text Field. I want to check whether the typed value is smaller than 100 and if not put focus back to that text Field. Unfortunately this does not seem to work. Please have a look at the code below. Any idea what I am doing wrong? qx.Class.

Re: [qooxdoo-devel] Problem with focus

2007-04-10 Thread Jim Hunter
2007 6:02 PM To: qooxdoo Development Subject: Re: [qooxdoo-devel] Problem with focus Hi Jim I missed your answer :) The Problem is inside of firefox AND internet explorer here. There is no cursor, and I can't type in the field after setting the cursor when I don't do it manually. Is

Re: [qooxdoo-devel] Problem with focus

2007-04-10 Thread Bruno Hivert (QA/EMC)
it depends on which side of which pond you're leaving ;-) Greetings, /Bruno -Original Message- From: Leander Hanwald [mailto:[EMAIL PROTECTED] Sent: April 6, 2007 6:02 PM To: qooxdoo Development Subject: Re: [qooxdoo-devel] Problem with focus Hi Jim I missed your answer :)

Re: [qooxdoo-devel] Problem with focus

2007-04-06 Thread Jim Hunter
I can not get setFocused to work at all on a TextField. I tried in an event, before the control gets added to the page and after the control gets added and in all cases there is no focus set on a TextField. I think you should report this as a bug. Jim Hunter D4PHP.ORG On 4/6/07, Leander Hanw

Re: [qooxdoo-devel] Problem with focus

2007-04-06 Thread Leander Hanwald
Hi Jim I missed your answer :) The Problem is inside of firefox AND internet explorer here. There is no cursor, and I can't type in the field after setting the cursor when I don't do it manually. Is there any example online where I can check it against working code? Greetings, Leander Jim Hu

Re: [qooxdoo-devel] Problem with focus

2007-04-03 Thread Jim Hunter
Are you testing this inside FireFox? There is a known FireFox bug that effects the carat in edit boxes. If you check the archives you will find some previous talk on this. Basically, FireFox hides the carat (cursor). I think someone found a work around, but I have not tried it yet. Jim Hunter Jim

[qooxdoo-devel] Problem with focus

2007-04-03 Thread Leander Hanwald
Hi @ all I have a small problem with the focus handling. It simply didn't work for me ;) I have a atom object with an added label and an added (but hidden) editfield. (I'm not sure if this is the best way, but it seems to work in the rest for me). When the user clicks on the atom (or label, but

Re: [qooxdoo-devel] Problem with focus

2006-02-21 Thread Dietrich Streifert
@Johann: this is nothing I've done in qooxdoo but in other non-js frameworks: Create an invisible (small or out of view) field which you send the focus to when the blur event is fired on the barcode field. Then in this invisible field send the focus back to the barcode field by catching the f

Re: [qooxdoo-devel] Problem with focus

2006-02-21 Thread Sebastian Werner
Johann Reyes schrieb: Hello Everyone Question. Is there a way to maintain the focus in a textfield even after a tab?? My scenario is, a screen, 2 input boxes, 1 input box is to scan barcodes, so after scanning the barcode, the focus needs to get back to the same textfield to keep scan

[qooxdoo-devel] Problem with focus

2006-02-21 Thread Johann Reyes
Hello Everyone   Question. Is there a way to maintain the focus in a textfield even after a tab??   My scenario is, a screen, 2 input boxes, 1 input box is to scan barcodes, so after scanning the barcode, the focus needs to get back to the same textfield to keep scanning more barcodes,