[qooxdoo-devel] where is qx.js in qooxdoo-0.6.4-sdk

2007-01-02 Thread David, Lysander
Hi, After extracting qooxdoo-0.6.4-sdk then typing make source in qooxdoo-0.6.4-sdk/frontend after the make completes, I am unable to locate qx.js After extracting qooxdoo-0.6.3-sdk then typing make source in qooxdoo-0.6.3-sdk/frontend/framework/source I am able to find qx.js h

Re: [qooxdoo-devel] CheckBox focus

2007-01-02 Thread Sebastian Werner
Rüdiger Herrmann schrieb: > Sebastian Werner wrote: >> Alex Back schrieb: >>> Hi Rüdiger, >>> >>> Rüdiger Herrmann wrote: Hi all, I have two questions regarding the checkbox and its appearance when focused: 1. A focus rectangle is drawn around the checkbox when f

[qooxdoo-devel] Table with checkboxes: recover checkbox selection

2007-01-02 Thread Agustin Almonte F.
Hi all, first of all happy new year :) I'm starting with qooxdoo and working on an table with a checkbox column. My question is how can i recover the marked rows ( rows with checkbox set to true). Have any one a recommendation about an editor for qooxdoo? i'm currently using textMate. Thanks in

Re: [qooxdoo-devel] qooxdoo 0.6.4 released

2007-01-02 Thread Hugh Gibson
> we have just released qooxdoo 0.6.4. The download page at http://qooxdoo.org/download doesn't mention anything about the "backend" package. This should be tidied up to make it clear what should be downloaded. Hugh - Tak

Re: [qooxdoo-devel] CheckBox focus

2007-01-02 Thread Rüdiger Herrmann
Sebastian Werner wrote: > Alex Back schrieb: >> Hi Rüdiger, >> >> Rüdiger Herrmann wrote: >>> Hi all, >>> >>> I have two questions regarding the checkbox and its appearance when >>> focused: >>> >>> 1. >>> A focus rectangle is drawn around the checkbox when focused by keyboard. >>> When focused b

Re: [qooxdoo-devel] CheckBox focus

2007-01-02 Thread Sebastian Werner
Alex Back schrieb: > Hi Rüdiger, > > Rüdiger Herrmann wrote: >> Hi all, >> >> I have two questions regarding the checkbox and its appearance when >> focused: >> >> 1. >> A focus rectangle is drawn around the checkbox when focused by keyboard. >> When focused by mouse, the focus rectangle is miss

Re: [qooxdoo-devel] CheckBox focus

2007-01-02 Thread Alex Back
Hi Rüdiger, Rüdiger Herrmann wrote: > Hi all, > > I have two questions regarding the checkbox and its appearance when > focused: > > 1. > A focus rectangle is drawn around the checkbox when focused by keyboard. > When focused by mouse, the focus rectangle is missing. Did I oversee > something

Re: [qooxdoo-devel] Eventhandler for Textfield

2007-01-02 Thread Sebastian Werner
Matthias Reuter schrieb: > Well, > > this is not what I wanted. As you said, changeValue is only fired when > the textfield looses focus. What I want is an event that is fired when I > hit the return key. > > And, yes, I have had a look at the demos before, and yes, I know how to > do this with t

Re: [qooxdoo-devel] Eventhandler for Textfield

2007-01-02 Thread Matthias Reuter
OK, so it's not standardized, it's just common behaviour of several browsers. I give up and start listening to input events. Sigh! - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and

Re: [qooxdoo-devel] Eventhandler for Textfield

2007-01-02 Thread Dietrich Streifert
First point: the html onchange event only fires if the textfield loses the focus and its value has been modified. Please have a look at the standards: http://www.w3.org/TR/html401/interact/scripts.html#adef-onchange This is exactly what the "changeValue" event listener does for you. So I don't

Re: [qooxdoo-devel] Eventhandler for Textfield

2007-01-02 Thread Matthias Reuter
Well, this is not what I wanted. As you said, changeValue is only fired when the textfield looses focus. What I want is an event that is fired when I hit the return key. And, yes, I have had a look at the demos before, and yes, I know how to do this with the "input" event. I just wonder why qooxd

Re: [qooxdoo-devel] Eventhandler for Textfield

2007-01-02 Thread Dietrich Streifert
If you just want to track the change of the textfield value you have to add the eventlistener for "changeValue". "changeValue" just fires if the textfield looses focus. And as David said: please have a look at the demos e.g.: http://demo.qooxdoo.org/sample/html/example/Fields_1.html shows the

Re: [qooxdoo-devel] Eventhandler for Textfield

2007-01-02 Thread Matthias Reuter
I thought there might be an easier way to do this. With html, I'd do something like The natural way to handle this with qooxdoo I thought, was myTextField.addEventListener("change", doSomething, this); Thus, I'd only need one function doSomething. Now I need doSomethingWhenButt

Re: [qooxdoo-devel] Flexing inside GroupBox

2007-01-02 Thread dperez
Try to give to the GroupBox a flex size, and to the list 100%, so that fills its container. Nick Glencross-2 wrote: > > Hi All! > > > What I've been trying to do is create a List which flexes to a maximum > size, and this works great. Ideally I'd like the List inside a GroupBox, > but is th

Re: [qooxdoo-devel] german Umlaute in Atoms

2007-01-02 Thread dperez
Hi, This isn't needed, just use the correct encoding in your source javascript file. Also make sure that the MIME type of your javascript files is: text/plain;charset=UTF-8 Matthias Reuter wrote: > > Hi Tobias, > > Mask special characters. Since we're dealing with javascript, special > chara

Re: [qooxdoo-devel] Eventhandler for Textfield

2007-01-02 Thread dperez
Hi, Clearly, you must attach a key event to the textfield, and when the enter key is pressed, you must dispatch an execute event to the button. You have many examples of keyboard processing in the qooxdoo source code. The doc explains also this. Matthias Reuter wrote: > > In my application,

Re: [qooxdoo-devel] Thank you and 2007 Qooxdoo wishlist

2007-01-02 Thread dperez
Hi Mike, Very interesting your wishes. Point 1) can be accomplished through the development of custom cell renderers. It is a very flexible approach. Here are additional wishes: http://qooxdoo.org/community/wishlist You can writet there yours Mike Rea wrote: > > This post is different th