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

Re: [qooxdoo-devel] progress bar in a table

2011-04-21 Thread John de la Garza
On Thu, Apr 21, 2011 at 2:37 AM, Gabriel Munteanu wrote: > clicking next and previous works just fine. > maybe there is something in your app that does something, or maybe another > plotter presents this bug [I used canvascell.plotter.Bar]. What plotter do > you use ? > > I use Bar, too... I ha

Re: [qooxdoo-devel] progress bar in a table

2011-04-21 Thread Gabriel Munteanu
i tried it too. there is no rendering problem, and nothing in the console. can you try out this example [ it is a newly generated qooxdoo app Application.js file]: - /* Copy

Re: [qooxdoo-devel] progress bar in a table

2011-04-20 Thread John de la Garza
>> >> http://demo.qooxdoo.org/contrib/demobrowser/#CanvasCell~trunk%2Fdefault%2F1.4%2Findex.html >> >> Has anyone used this code with tables that are on stacks? I have a stack of tables and when I bring a page to the front it wont render on the first view. If I click a sorter on the table it th

Re: [qooxdoo-devel] progress bar in a table

2011-04-15 Thread John de la Garza
On Fri, Apr 15, 2011 at 8:26 AM, Bruce Bockius wrote: > You might checkout > > http://demo.qooxdoo.org/contrib/demobrowser/#CanvasCell~trunk%2Fdefault%2F1.4%2Findex.html > > > -- wow, looks like my job is almost done... thanks again ---

Re: [qooxdoo-devel] progress bar in a table

2011-04-15 Thread Bruce Bockius
You might checkout http://demo.qooxdoo.org/contrib/demobrowser/#CanvasCell~trunk%2Fdefault%2F1.4%2Findex.html -Original Message- From: John de la Garza [mailto:j...@jjdev.com] Sent: Friday, April 15, 2011 9:13 AM To: qooxdoo Development Subject: Re: [qooxdoo-devel] progress bar in a

Re: [qooxdoo-devel] progress bar in a table

2011-04-15 Thread John de la Garza
On Fri, Apr 15, 2011 at 1:24 AM, Gabriel Munteanu wrote: > Hi, > > First, you cannot use the progressbar in the data model. > what you should have is : > var data = [[1,2],[1,50]]; yes I now realize that I wasn't making sense to try that... > > then, in order to show the second column [values 2 a

Re: [qooxdoo-devel] progress bar in a table

2011-04-15 Thread Gabriel Munteanu
Hi, First, you cannot use the progressbar in the data model. what you should have is : var data = [[1,2],[1,50]]; then, in order to show the second column [values 2 and 50] you should choose a renderer http://demo.qooxdoo.org/current/apiviewer/#qx.ui.table.columnmodel.Basic~setDataCellRenderer. U

Re: [qooxdoo-devel] progress bar in qooxdoo?

2009-10-24 Thread skar
thron7 wrote: John Spackman did the initial 0.8 porting in the 0.8-pre branch of the contrib. You've discovered that meanwhile, also learning that it is always good to *check* a contrib before including its trunk version in your own app :-) . Yup, sure learned not to take a contrib at face val

Re: [qooxdoo-devel] progress bar in qooxdoo?

2009-10-23 Thread panyasan
thron7-2 wrote: > > John Spackman did the initial 0.8 porting in the 0.8-pre branch of the > contrib. You've discovered that meanwhile, also learning that it is > always good to *check* a contrib before including its trunk version in > your own app :-) . > > As a first step, I suggest you o

Re: [qooxdoo-devel] progress bar in qooxdoo?

2009-10-23 Thread thron7
John Spackman did the initial 0.8 porting in the 0.8-pre branch of the contrib. You've discovered that meanwhile, also learning that it is always good to *check* a contrib before including its trunk version in your own app :-) . As a first step, I suggest you open bugs for what you have (one f

Re: [qooxdoo-devel] progress bar in qooxdoo?

2009-10-23 Thread skar
panyasan wrote: > Hello Skar, > > the qooxdoo-contrib project is for everyone - you need to aks the qooxdoo > devs to give you commit rights, then you can do it yourself. Of course, it > is always good to ask the original author (you can find his name and e-mail > in the Manifest.js) first, but I t

Re: [qooxdoo-devel] progress bar in qooxdoo?

2009-10-23 Thread panyasan
Hello Skar, the qooxdoo-contrib project is for everyone - you need to aks the qooxdoo devs to give you commit rights, then you can do it yourself. Of course, it is always good to ask the original author (you can find his name and e-mail in the Manifest.js) first, but I think everybody is happy if

Re: [qooxdoo-devel] progress bar in qooxdoo?

2009-10-23 Thread skar
panyasan wrote: > As far as I remember, the ProgressBar contribution is still 0.7 code (even in > the trunk). A port to 0.8 would be very much appreciated! > Well, I changed setLabel to setValue everywhere in 0.8-pre and it works fine now. As for the trunk version, it seems it was left half way

Re: [qooxdoo-devel] progress bar in qooxdoo?

2009-10-22 Thread panyasan
As far as I remember, the ProgressBar contribution is still 0.7 code (even in the trunk). A port to 0.8 would be very much appreciated! C. skar wrote: > > Derrell Lipman wrote: >> On Thu, Oct 22, 2009 at 09:43, skar > > wrote: >> >> Hi, >> >> How do

Re: [qooxdoo-devel] progress bar in qooxdoo?

2009-10-22 Thread skar
Derrell Lipman wrote: On Thu, Oct 22, 2009 at 09:43, skar > wrote: Hi, How do I implement a horizontal or circular progress bar? qooxdoo-contrib contains ProgressBar which you can use as is, or as inspiration. Thanks for the pointers. However, when

Re: [qooxdoo-devel] progress bar in qooxdoo?

2009-10-22 Thread Derrell Lipman
On Thu, Oct 22, 2009 at 09:43, skar wrote: > Hi, > > How do I implement a horizontal or circular progress bar? > qooxdoo-contrib contains ProgressBar which you can use as is, or as inspiration. Derrell -- Come build wit

Re: [qooxdoo-devel] Progress bar, was: Re: Login and authentication

2009-06-16 Thread Derrell Lipman
On Tue, Jun 16, 2009 at 10:47 AM, panyasan wrote: > > In this context, I would need a port of the progress bar > qooxdoo-contrib project, to 0.8 - at the moment, the code is still 0.7. > Maybe somebody else also needs a progress bar and would have some time to > port it - I don't think it would b