Re: [qooxdoo-devel] Progress Bar

2012-08-03 Thread Eric Paul
Thanks. I will look into the timer sounds like it might be what I need. -Original Message- From: Mustafa Sak [mailto:mustafa@1und1.de] Sent: Friday, August 03, 2012 4:20 PM To: qooxdoo Development Subject: Re: [qooxdoo-devel] Progress Bar Hi Actually multi threading is not a matter

Re: [qooxdoo-devel] Progress Bar

2012-08-03 Thread Mustafa Sak
Hi Actually multi threading is not a matter of Qooxdoo. It's a matter of JavaScript. Indeed the only way to parallelise procedures is web worker. But in your case you should rethinking your code. As I could see in a quick overview you are calling many timeouts at the same time. That means afte

[qooxdoo-devel] Progress Bar

2012-08-03 Thread Eric Paul
Is there a way to display a progress bar while performing a long running task? Generally when I do this it requires 2 threads, does such a thing exist in qooxdoo? Here's what I have so far: //console.clear(); // Document is the application root var root = this.getRoot(); var box = new qx.

Re: [qooxdoo-devel] file upload dialog

2012-08-03 Thread Lukas havemann
Thank you very much! But it seems that I can't access the raw data of the uploaded file or can't I? Regards Lukas -- View this message in context: http://qooxdoo.678.n2.nabble.com/file-upload-dialog-tp7580872p7580876.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] file upload dialog

2012-08-03 Thread Cajus Pollmeier
Am Freitag, 3. August 2012, 11:47:22 schrieb Lukas havemann: > Hello, > > Why is there no file upload input widget in the qx.ui.form package? > and how do i implement a file upload ? > > Regards > Lukas Hi Lukas, maybe the UploadMgr from qooxdoo-contrib is what you're looking for. You can inc

Re: [qooxdoo-devel] file upload dialog

2012-08-03 Thread John Spackman
Upload widgets are provided as contribs maintained by the community; here's one that I wrote: http://qooxdoo.org/contrib/project/uploadmgr John On 03/08/2012 10:47, "Lukas havemann" wrote: >Hello, > >Why is there no file upload input widget in the qx.ui.form package? >and how do i implement a

Re: [qooxdoo-devel] file upload dialog

2012-08-03 Thread thron7
Lukas, check these two contributions: http://qooxdoo.org/contrib/project#uploadmgr and #uploadwidget T. On 08/03/2012 11:47 AM, Lukas havemann wrote: > Hello, > > Why is there no file upload input widget in the qx.ui.form package? > and how do i implement a file upload ? > > Regards > Lukas > >

[qooxdoo-devel] file upload dialog

2012-08-03 Thread Lukas havemann
Hello, Why is there no file upload input widget in the qx.ui.form package? and how do i implement a file upload ? Regards Lukas -- View this message in context: http://qooxdoo.678.n2.nabble.com/file-upload-dialog-tp7580872.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] Class dependency-error

2012-08-03 Thread thron7
Tobias, the canonical way for this situation (symbols outside the qooxdoo project but known to be around at runtime), is to use the #ignore pragma around the top of the using file [1]. E.g. in foo.bar.js you would add /* #ignore(ExternalStatic.Namespace.Value) */ Maybe when you ch

[qooxdoo-devel] Class dependency-error

2012-08-03 Thread Tost, Tobias
Hi, I got a strange problem with a project I just migrated from qooxdoo 1.6 to qooxdoo 2.0.1. We have large portions of static, external javascript code that get referenced directly from within the qooxdoo application. With project A this works fine without any problems and qx 2.0.1. The newly