Re: [qooxdoo-devel] Build version is not working

2008-04-03 Thread Dan
> > Obviously this funtion if called wrongly but I can't really determine the > position in the generated JavaScript file. How to handle this error? Is this > a known problem and does anyone have an idea how to fix or to narrow it down > at least? > I had this kind of problem when I used an unsaf

Re: [qooxdoo-devel] to qooxdoo or to pyjamas?

2008-04-03 Thread Dan
On 4/3/08, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Dear all, > > I have a dilemma. I only know Python. I don't know > Java, and I don't even know Java Script - but I really > like what I see from the qooxdoo web page. Someone > suggested that I look at pyjamas (a Python wrapper > over t

Re: [qooxdoo-devel] to qooxdoo or to pyjamas?

2008-04-03 Thread Hugh Gibson
I don't know pyjamas, but I have done a lot of programming in Python before getting into Javascript with qooxdoo. In fact our servers are written in Python with SQLite, and we have a desktop version of our app written in wxPython. There are a lot of similarities - same convenient data structures,

Re: [qooxdoo-devel] What is wrong with my second IFrame?

2008-04-03 Thread kanugula
I see the same behaviour in IE and FF. I have a feeling that this.setSource() and this.dispatchEvent() may be targeting to a wrong IFrame. kanugula wrote: > > Experts, > > I am dangling my head to fix my 2nd IFrame issue. > > I have two tabs. One to serach and other to buy. My search tab wor

[qooxdoo-devel] to qooxdoo or to pyjamas?

2008-04-03 Thread kc106_2005-qooxdoo
Dear all, I have a dilemma. I only know Python. I don't know Java, and I don't even know Java Script - but I really like what I see from the qooxdoo web page. Someone suggested that I look at pyjamas (a Python wrapper over the Google SDK) which might not look as good as qooxdoo but it's Python.

Re: [qooxdoo-devel] What is wrong with my second IFrame?

2008-04-03 Thread Helder Magalhães
kanugula wrote: > > I am dangling my head to fix my 2nd IFrame issue. > > I have two tabs. One to serach and other to buy. My search tab works > greate and fills the IFrame. When I click 2nd Tab, it fetched remote web > site, but it doesn't fill my Iframe. > > Can somebody poibnt the error ple

Re: [qooxdoo-devel] UploadWidget problem

2008-04-03 Thread cboulanger
Yes, that was it. Sorry! I am so used to working with XML instead of javascript for building the ui that I forgot that this needs to be numbers and not strings. Now it works. Thank you very much. I have added it to http://qooxdoo.org/documentation/0.7/snippets/asynchronous_user_interaction but

Re: [qooxdoo-devel] UploadWidget problem

2008-04-03 Thread Dietrich Streifert
This is my code which used to work: var gb = new qx.ui.groupbox.GroupBox('Upload file'); gb.set( { bottom : 2, left : 3, right : 4, height : 60 }); this.add(gb); this._uploadform = new uploadwidget.UploadForm("uploadFrm"); var f

Re: [qooxdoo-devel] UploadWidget problem

2008-04-03 Thread Dietrich Streifert
Sorry I can't test that now but shouldn't top, left, right, bottom be integer values not strings? form.set({top:0, left:0,right:0,bottom:0, width:null}); cboulanger schrieb: Hm, unfortunately not. Still doesn't show up. In the firebug dom inspector, the form and iframe and divs are greyed ou

[qooxdoo-devel] What is wrong with my second IFrame?

2008-04-03 Thread kanugula
Experts, I am dangling my head to fix my 2nd IFrame issue. I have two tabs. One to serach and other to buy. My search tab works greate and fills the IFrame. When I click 2nd Tab, it fetched remote web site, but it doesn't fill my Iframe. Can somebody poibnt the error please? I suspect, this.set

Re: [qooxdoo-devel] UploadWidget problem

2008-04-03 Thread cboulanger
Hm, unfortunately not. Still doesn't show up. In the firebug dom inspector, the form and iframe and divs are greyed out... Strange.. Dietrich Streifert schrieb: > Hi Christian, > > please try to set the width of the UploadForm to null: > > form.set({top:"0",left:"0",right:"0",bottom:

Re: [qooxdoo-devel] UploadWidget problem

2008-04-03 Thread Dietrich Streifert
Hi Christian, please try to set the width of the UploadForm to null: form.set({top:"0",left:"0",right:"0",bottom:"0", width:null}); Hope this helps. cboulanger schrieb: > Hello, > > I have a problem with the upload Widget from qooxdoo-contrib. I am > trying to build it into a Mixi

Re: [qooxdoo-devel] Error when disposing Children

2008-04-03 Thread Hugh Gibson
> Do I have to put this mixin (qx.util.manager.MConnectedObject) > Into every class of my application? If you use the latest source code it should be OK. If you don't put the right code in place the mixin will tell you what to do :-) Hugh -

[qooxdoo-devel] UploadWidget problem

2008-04-03 Thread cboulanger
Hello, I have a problem with the upload Widget from qooxdoo-contrib. I am trying to build it into a Mixin with various user interaction widgets. Here is my code: /** * not functional yet * @param {Object} msg * @param {Object} callback * @param {Objec

Re: [qooxdoo-devel] Build version is not working

2008-04-03 Thread thron7
> But when I try to start my application Firebug immediately reports: $0 > has no properties – ims.js (line ). The code in line is: > > toHashCode:function($0){ > > if($0._hashCode!=null){ > > return $0._hashCode; > > } > > return $0._hashCode=this.__availableHashCode++; > > } > > Obviou

Re: [qooxdoo-devel] Internationalization

2008-04-03 Thread Helder Magalhães
Bryan Coutch wrote: > > (...) it doesn't seem to mention the following files: > /frontend/framework/source/class/qx/locale/data/*.js > /frontend/framework/source/locale/*.xml > What are these files used for? I assume I will want to create a > translation for the languages I need? > AFAIK,

Re: [qooxdoo-devel] Busy state while asynchron request to server

2008-04-03 Thread Derrell Lipman
On Thu, Apr 3, 2008 at 5:48 AM, Kolodziej Christian < [EMAIL PROTECTED]> wrote: > i've just a little problem to display the busy state if an synchron > request to the server is running. I inserted an image that should be > displayed every time the application is waiting for a webserver response.

Re: [qooxdoo-devel] Error when disposing Children

2008-04-03 Thread Tobias Koller (GERMO GmbH)
Thanks for the link. Do I have to put this mixin (qx.util.manager.MConnectedObject) Into every class of my application? -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Hugh Gibson Gesendet: Donnerstag, 3. April 2008 13:43 An: qooxdoo-devel@list

Re: [qooxdoo-devel] Error when disposing Children

2008-04-03 Thread Hugh Gibson
> It only increases if I create the widgets. When I reuse them it > doesn't. But I have 8 Buttons with different widgets. Sounds like you have circular references between widgets that you need to track down. Have you implemented the fix for references to themed objects hanging around? Take a lo

Re: [qooxdoo-devel] Error when disposing Children

2008-04-03 Thread Tobias Koller (GERMO GmbH)
It only increases if I create the widgets. When I reuse them it doesn't. But I have 8 Buttons with different widgets. -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Hugh Gibson Gesendet: Donnerstag, 3. April 2008 12:14 An: qooxdoo-devel@lists.s

Re: [qooxdoo-devel] Busy state while asynchron request to server

2008-04-03 Thread Hugh Gibson
Try this: timer.showLoader( true ); // show busy image qx.ui.core.Widget.flushGlobalQueues(); response = rpc.callSync( method, params ); // rpc is of type qx.io.remote.Rpc timer.showLoader( false ); // hide busy image qx.ui.core.Widget.flushGlobalQueues(); // ... do something w

[qooxdoo-devel] Build version is not working

2008-04-03 Thread Kolodziej Christian
The second time hello for today, beneath the problem concerning the busy image that I reported some minutes ago I have a big problem with my application: the build version is not working! I "produced" the build version on command line using make source build or only make build. The creation work

Re: [qooxdoo-devel] Error when disposing Children

2008-04-03 Thread Hugh Gibson
> Till now I'm reusing all the widgets but the memory-size increases > dramatically ( I have many many widgets). There are some clients > with a memory of 256 mb which makes it hard to keep all this > widgets. If your memory keeps on increasing like that it sounds to me that you're not re-using

[qooxdoo-devel] Busy state while asynchron request to server

2008-04-03 Thread Kolodziej Christian
Hello everybody, i've just a little problem to display the busy state if an synchron request to the server is running. I inserted an image that should be displayed every time the application is waiting for a webserver response. Therefore is I coded: timer.showLoader( true );

Re: [qooxdoo-devel] Error when disposing Children

2008-04-03 Thread Tobias Koller (GERMO GmbH)
Hi alex, thanks for your answer. I put some alerts inside the widget.js just to see which widget makes trouble here ;) I found out that a self-made "loadScreen" widget was added as a child to the disposed widget. This "loadScreen"-widget is used on every current loading page so I was not allowe

Re: [qooxdoo-devel] Error when disposing Children

2008-04-03 Thread Alexander Back
Hello Tobias, I do not know exactly what's going inside the layout engine, but let me try it to explain it in the best way I can (and with my limited knowledge) ;-) If you catch the disappear event of the page the child widgets are also added to the layout queue in order to relayout them (in y