Re: [qooxdoo-devel] column widths messed up with programmatic show/hide in Table

2009-01-30 Thread Kenneth Tilton
Fabian Jakobs wrote: > Jim Hunter schrieb: >> I think that the bug here is not in that I changed the size of the >> header, it's in the size that I changed it to. As it turns out, you >> can not have a column size < 40 pixels. If you set the column less >> then 40, the header stays at 40 but t

Re: [qooxdoo-devel] File upload w. qx.io.remote.Request ?

2009-01-30 Thread Jim Hunter
This is interesting. What it is doing is skirting the security issue by saying the only data you can send via their modified request object, is data that you have selected. So it looks like in FF3+ you can do a file upload without using a standard HTML form. But since no other browser supports it,

Re: [qooxdoo-devel] Everytime Timeout in qx.io.remote.Request. Why?

2009-01-30 Thread Petr Kobalíček
Hi, try replace alert() with this.debug(). I don't know if this is not caused by alert() and executing javascript in another browser thread (you are probably using firefox, are you?) Cheers Petr 2009/1/30 Christoph Schwentker : > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > > Hi, > > tody

[qooxdoo-devel] Checkboxes not working correctly with current development version

2009-01-30 Thread Mr. Hericus
Hi All, Just noticed that checkboxes are not working after I did an svn update of the development version. I double-checked (no pun intended) with the versions of the demo browser on-line: http://demo.qooxdoo.org/current/demobrowser/#widget~CheckBox.html works fine. http://demo.qooxdoo.org/deve

[qooxdoo-devel] Everytime Timeout in qx.io.remote.Request. Why?

2009-01-30 Thread Christoph Schwentker
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, tody I tried around with the qx.io.remote.Request and I have a question: I everytime get a Timeout after sending the request! The first state of the GET-request is "configured", then after doing request.send(); the request state is "queued". And

Re: [qooxdoo-devel] Error in v0.8.1 - qx.theme not set

2009-01-30 Thread Amit Rana
Hi, I corrected my mistake by adding the theme in jobs/common/settings. But, my JS file says qxsettings["qx.version"]="${QXVERSION}"; (shouldn't it take the value from application.json or base.json as its not defined in config.json) Also, in my JS file, qxlibraries["qx"]={"resourceUri":"./MyJS

Re: [qooxdoo-devel] Error in v0.8.1 - qx.theme not set

2009-01-30 Thread thron7
Do you have an "include" key in your config.json? Make sure your theme gets listed there, and *before* your application is listed. T. Amit Rana wrote: > Hi, > > I finally managed to configure the config.json and run the "generate.py > source" successfully for v0.8.1. But, after I run my applica

[qooxdoo-devel] Error in v0.8.1 - qx.theme not set

2009-01-30 Thread Amit Rana
Hi, I finally managed to configure the config.json and run the "generate.py source" successfully for v0.8.1. But, after I run my application in the browser, I got the error: [Exception... "'Error: The theme to use is not available: qx.theme.Classic' when calling method: [nsIDOMEventListener::

Re: [qooxdoo-devel] RTTI (runtime type information) and qx classes

2009-01-30 Thread Daniel Wagner
Yes, I ran into this problem while working with the Simulator contrib (http://qooxdoo.org/contrib/project/simulator) in Selenium IDE under Firefox 3. While using a locator that tries to access qooxdoo objects through their class name, I'd get "invalid 'instanceof' operand" errors that seemed to

Re: [qooxdoo-devel] RTTI (runtime type information) and qx classes

2009-01-30 Thread thron7
Another thing is that FF3 might interfer with instanceof operations. Some new security restrictions will produce some wrapper object around the object you are looking at. Daniel had this exact issue when working with Selenium. @Daniel: Can you comment on this?! Thomas Matthew Gregory wrote: >

Re: [qooxdoo-devel] RTTI (runtime type information) and qx classes

2009-01-30 Thread Matthew Gregory
Hi, You can use the javascript "instanceof" just fine. There are quite a few other static helper functions in qx.Class that will probably help yo do what you want. Here are just a few * qx.Class.isSubClassOf(clazz, superClass) * qx.Class.hasMixin(clazz, mixin) * qx.Class.hasInterface(clazz, ifac

[qooxdoo-devel] RTTI (runtime type information) and qx classes

2009-01-30 Thread Dmitry Pryadkin
Gentleman, I've a question. Let there be a qooxdoo object. How can I check if it implements a certain functionality, i.e. "instanceof". I'm implementing test-extensions for Selenium. This means I'm dealing with non-standard situations where the context probably doesn't obey standard rules. Tha

Re: [qooxdoo-devel] Qooxdoo Tutorial: Layouts

2009-01-30 Thread Sebastian Werner
Looks nice. Well written. Please continue your work. It's always inspiring and interesting to read articles written from people with another perspective. Thanks! Sebastian Atamert Ölçgen schrieb: > Dear All, > I am working on a tutorial that tries to explain Qooxdoo layouting in > contrast >

Re: [qooxdoo-devel] Qooxdoo Tutorial: Layouts

2009-01-30 Thread Florian Giesen
Hello Atamert, congratulations to the well written article! I find it very comprehensive and informative and I am looking forward to the next parts. This should make it easier for non-qooxdoo developers or beginners to become more familiar with this great framework. Regards, Florian -

Re: [qooxdoo-devel] column widths messed up with programmatic show/hide in Table

2009-01-30 Thread Fabian Jakobs
Jim Hunter schrieb: > I think that the bug here is not in that I changed the size of the > header, it's in the size that I changed it to. As it turns out, you > can not have a column size < 40 pixels. If you set the column less > then 40, the header stays at 40 but the data columns will get smal

Re: [qooxdoo-devel] Very wierd bug with custom decorator

2009-01-30 Thread Fabian Jakobs
Matthew Gregory schrieb: > Thanks, > I've only been able to reproduce this on 1280x1024 displays. Does > anybody have Fx3 running at 1280x1024 and *cannot* reproduce this bug? > > Think this is something worth reporting to Mozilla? I doubt it is a > qooxdoo bug. > > Matt > Hi Matthew, this lo

[qooxdoo-devel] Qooxdoo Tutorial: Layouts

2009-01-30 Thread Atamert Ölçgen
Dear All, I am working on a tutorial that tries to explain Qooxdoo layouting in contrast to conventional (jQuery, prototype etc) web application layouting (direct DOM manipulation). Part 1 is online here: http://www.muhuk.com/2009/01/using-layouts-in-qooxdoo-part-1/ Please take a look at it and

Re: [qooxdoo-devel] File upload w. qx.io.remote.Request ?

2009-01-30 Thread Florian Giesen
Hello Jim, if I am not understanding something completely wrong, which is always a realistic option ;-) , these two articles are producing evidence that it is possible with the nsIDOMFile API and the new method XMLHttpRequest.sendAsBinaryData(...) to implement pure AJAX fileuploads and other fancy