Re: [qooxdoo-devel] what is qx.util.Validate.required

2010-08-18 Thread Martin Wittemann
Hello Mustafa, thanks for the pointer. Thats just some old code which was left from the changes made some time ago. The working code is: var manager = new qx.ui.form.validation.Manager(); nameTextfield.setRequired(true); manager.add(nameTextfield); I changed the demo to have th

Re: [qooxdoo-devel] generate build/source speed

2010-08-18 Thread Fritz Zaucker
On Thu, 19 Aug 2010, Ralf Nieuwenhuijsen wrote: > One of the nice advantages of having a parser in Haskell, is that it would > be very easy to add some javascript optimizations for the less intelligent > browsers out there. Stuff like converting: > > myObject.someMethod( foo[bar], foo[bar] ); > >

Re: [qooxdoo-devel] Mixin Source and Build Version

2010-08-18 Thread Ralf Nieuwenhuijsen
Hi, Jorg! I'm assuming you have some back-end code (PHP, ruby, whatever) that is providing the final piece of javascript that ties it all together? I think you should be able to do that easily. You can just add javascript to your main html. As long as you have all the qooxdoo classes you want to

Re: [qooxdoo-devel] generate build/source speed

2010-08-18 Thread Ralf Nieuwenhuijsen
Hi, >I already set the cache to a folder in a ram disk. >It improve speed but I would like more. > >So, I did try to put the entire SDK in a ram disk. >This is the best IO bandwidth I could think about. This doesn't surprise me at all. Ramdisks make situations faster where you _write_ to disk; no

Re: [qooxdoo-devel] console.log inside playground

2010-08-18 Thread Jim Hunter
Sure, just enable FireBug for that URL. I do it all the time. Just use doc.info(msg) to log to the FireBug console (I don't use console.log, I use the qooxdoo logging mechanism) Jim On Wed, Aug 18, 2010 at 8:51 AM, b a wrote: > hi, can I have firebug console.log inside the qooxdoo playground

[qooxdoo-devel] console.log inside playground

2010-08-18 Thread b a
hi, can I have firebug console.log inside the qooxdoo playground ? -- This SF.net email is sponsored by Make an app they can't live without Enter the BlackBerry Developer Challenge http://p.sf.net/sfu/RIM-dev2dev __

Re: [qooxdoo-devel] icon resource help needed for newbie

2010-08-18 Thread Daniel Wagner
Ah, now I understand. By referencing the image in a string, you're bypassing qooxdoo's resource handling. So the browser just treats "p_bg.jpg" as a URI path relative to your index.html. To reference one of your application's resources directly, you need to replace "p_bg.jp" with the return val

Re: [qooxdoo-devel] listener activation looks broken

2010-08-18 Thread Dave Baggett
Following up on my own post, I traced this to my use of setKeepActive in the parent object. I put that in to try to address focus problems under IE. Can someone explain what the heck keepActive and keepFocus are supposed to do? They seem to be used as weird hacks here and there in the source (e.g

Re: [qooxdoo-devel] RpcNode taking shape, API Viewer for server classes

2010-08-18 Thread panyasan
Hi Fabian, Fabian Jakobs wrote: > > We are using NGINX as reverse proxy. NGING handles SSL encryption and > serves static files. All other requests are forwarded to node.js. > hm, but I am thinking of the opposite scenario - I don't really care so much about the static files (== the qooxdoo a

[qooxdoo-devel] what is qx.util.Validate.required

2010-08-18 Thread Mustafa Sak
Hi List, why does this work on demo: var manager = new qx.ui.form.validation.Manager(); manager.add(nameTextfield, qx.util.Validate.required); But the API says, there is no qx.util.validate.required By the way at my script this error notifies: qx.util.validate is undefined R

[qooxdoo-devel] Antw: Zugriff auf this im Event?

2010-08-18 Thread Robert Nimax
Hi Stefan, I think the official mailing list language is english...so let´s switch :-) You have to pass the context of the callback function the addListener method like this: file.addListener('changeFieldValue',function(e){}, this); Regards, Rob. >>> Stefan Meyer 8/18/2010 4:35 >>> Hallo, ist

[qooxdoo-devel] Zugriff auf this im Event?

2010-08-18 Thread Stefan Meyer
Hallo, ist es nicht möglich auf das "Hauptobject" innerhalb eines Qooxdoo Events zuzugreifen? Aktuell evrsuche ich es so , aber das klappt nicht file.addListener('changeFieldValue',function(e){ if(e.getData()!='') { alert(this.userList

Re: [qooxdoo-devel] icon resource help needed for newbie

2010-08-18 Thread evejones
Thanks. Tried that but it did not work. Here is my code which works for development by placing images in source dir. I tried adding them to resources, run generate.py source-all, then rebuilding app, and adding app name to where images are but still not working in build version. What is the b

Re: [qooxdoo-devel] listener activation looks broken

2010-08-18 Thread Dave Baggett
Kenneth Tilton wrote: > > Create a textfield and a listbox. > > Put a keypress listener on the textfield. > > Type in the textfield and see listener console writes OK. > > Click on an item in the listbox. > > Click-drag (one action) to select the full contents of the textfield. > > Start ty

Re: [qooxdoo-devel] generate build/source speed

2010-08-18 Thread Jean-Baptiste BRIAUD -- Novlog
In other words : is qxbuild a generate build (or source ?) that include all possible widgets ? Other ideas than qxbuild to speedup generate build/source or to deploy quickly in a dev environment ? On 18 août 2010, at 09:23, Jean-Baptiste BRIAUD -- Novlog wrote: > Ah, yes, qxbuild ! > I used i

Re: [qooxdoo-devel] icon resource help needed for newbie

2010-08-18 Thread Daniel Wagner
You should place any resources your application needs in source/resource/, then you can just use an asset hint like this in your main Application.js: #asset(myapplication/*) This tells the "build" job to then copy everything it finds from source/resource/ to build/resource/ Regards, Daniel e

Re: [qooxdoo-devel] icon resource help needed for newbie

2010-08-18 Thread evejones
Fixed. Thanks. Another problem is I have used the embed html tag to place some images and text in the header. for development i placed these in the root of the source directory. They show up in development. I have also placed them in the resources directory and they do not show up in the build. An

Re: [qooxdoo-devel] .mo file location question

2010-08-18 Thread Ed Adasiewicz
Thanks for the pointer (I forgot about copying files). -- View this message in context: http://qooxdoo.678.n2.nabble.com/mo-file-location-question-tp5434142p5436049.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] icon resource help needed for newbie

2010-08-18 Thread Daniel Wagner
Hi, did you declare the resources you want to use in your source file(s)? It's described here: http://bit.ly/apHFtk Regards, Daniel evejones schrieb: > Hi, > I have copied some icons to resources and they are not available for my > development app. I have looked through the documentation to fi

[qooxdoo-devel] icon resource help needed for newbie

2010-08-18 Thread evejones
Hi, I have copied some icons to resources and they are not available for my development app. I have looked through the documentation to find out if I need to use the generator but can not find anything to help me. The docs say just place them into the resources folder and nothing much else. Can an

[qooxdoo-devel] Mixin Source and Build Version

2010-08-18 Thread Jörg Sandkuhle
Hi! Is it possible to mix a build and a source version? What i try to achieve is to generate some part of the source code at runtime. This dynamic generate source code should go into the main html file. I know that this code will not be optimized - but thats ok. The rest of the code can resid

Re: [qooxdoo-devel] Flash javascript method access problem from qooxdoo

2010-08-18 Thread Christian Hagendorn
Hi Stefan, your code looks good, but you are using a URL and not a qooxdoo resource id in your constructor, so please ensue that the flash file is relay loaded. You can also use the qooxdoo resource system, when you are not sure. Copy the file to the resource folder like the "test.png" in a

Re: [qooxdoo-devel] json-rpc-2

2010-08-18 Thread Martin Wittemann
Hello David, We hope to get a look at the whole RPC layer in qooxdoo for the upcoming release: http://qooxdoo.org/about/roadmap#release_1.3 We will see if there is enough time to include the batching feature. I really hope we can get it done because I also think it can improve speed, especially

Re: [qooxdoo-devel] generate build/source speed

2010-08-18 Thread Jean-Baptiste BRIAUD -- Novlog
Ah, yes, qxbuild ! I used it at least 1 year and I can confirm it is very quick to deploy and a very very good way to start with qooxdoo since you can avoid to learn build toolchain upfront. ... and I can also understand that "wind of freedom" that I appreciate in general :-) We are now using th

[qooxdoo-devel] json-rpc-2

2010-08-18 Thread David Charbonnier
Hi, Is somebody working on http://groups.google.com/group/json-rpc/web/json-rpc-2-0 ? Batch (point 6) it's a major improvement for rpc speed. Any discussion, tickets, documentation I can refer to ? A roadmap for this ? Do you plan to keep xml-rpc support ? Thank you, David ---