[qooxdoo-devel] Comparing Qooxdoo to YUI

2008-02-20 Thread Clayton Dukes
I notice that the YUI team just release v2.5.0 this evening and was wondering if anyone had done a comparison between Qooxdoo and YUI. Are there advantages/disadvantages to using either as my framework? My intent is to make sure I'm making the right decision moving forward with my plans for a site

Re: [qooxdoo-devel] Compiler optimization of unused methods?

2008-02-20 Thread Hugh Gibson
> It would need to detect that a call to a method inside an unused > method (for example debugging stuff) shouldn't count otherwise it > would probably greatly reduce the usefulness of such a mechanism. Yes, this would be very difficult to implement in general as there may be all sorts of ways of

Re: [qooxdoo-devel] qooxnoob

2008-02-20 Thread Clayton Dukes
Hi Andreas, thanks for the response! I don't recall going through the tool chain, I'll give that a go tonight when I get home. Thanks! On Feb 20, 2008 12:53 PM, Andreas Ecker <[EMAIL PROTECTED]> wrote: > Hi, > > welcome to qooxdoo. :-) > > > Hi folks, > > I've been poking around on the site for

Re: [qooxdoo-devel] qooxnoob

2008-02-20 Thread Andreas Ecker
Hi, welcome to qooxdoo. :-) > Hi folks, > I've been poking around on the site for a few days, reading doc, > trying out the demo's, etc but am still a bit lost. > I really see some amazing stuff and want to use it but am not sure how to > start. We certainly need to make it easier for new user

Re: [qooxdoo-devel] Success story

2008-02-20 Thread John David Lee
I'm glad you like it. This project was a reasonably large undertaking. The development time was approximately 6 programmer months for everything. I don't have any words of wisdom per se, but if you have any specific questions I can try to answer them. BTW our backend is apache2.2 w/ mod_pytho

Re: [qooxdoo-devel] Success story

2008-02-20 Thread Clayton Dukes
That is sweet! I own an open source log viewing program and am just now (within the last couple of days) looking an giving it a major face lift using qooxdoo. http://code.google.com/p/php-syslog-ng/ I'm still very new to qooxdoo so if you have any good nuggets of wisdom for me, I would *love* to h

Re: [qooxdoo-devel] Ajax Status Indicator

2008-02-20 Thread Jim Hunter
This is essentially what I do as well. The one key thing to note here is that the transport needs to be set to req.setAsynchronous(true); This will allow other things to happen on the page. When I was not setting it to true, the animated GIFs did not move. It wasn't until I set it to true that the

Re: [qooxdoo-devel] Scroll bar issue in Firefox 3

2008-02-20 Thread Fabian Jakobs
Helder Magalhães schrieb: > Fabian Jakobs-2 wrote: > >> please submit it to the qooxdoo bug tracker. Maybe we can reduce the >> problem to a firefox bug. Then we should file it there as well. >> >> > Done! :-) > Problem was reduced to qooxdoo and submitted [1] to the framework's bug > trac

[qooxdoo-devel] qooxnoob

2008-02-20 Thread Clayton Dukes
Hi folks, I've been poking around on the site for a few days, reading doc, trying out the demo's, etc but am still a bit lost. I really see some amazing stuff and want to use it but am not sure how to start. I'm particularly interested in the windowing feature: http://demo.qooxdoo.org/current/demo

Re: [qooxdoo-devel] Themes in Qooxdoo with single Components?!?

2008-02-20 Thread Andreas Ecker
Howdy! > I just tried the Theme feature and it works very good. Always good to hear ;-) > Now I wonder what I > should do, if I want different buttons in one page that have different > themes... > > Can I use a theme with a single component (for example one button) and use > another theme for a

Re: [qooxdoo-devel] Qooxdoo Problem with table and widgets inside this table

2008-02-20 Thread Fink, Andreas
Hi Sandman, you could improve your workaround by using the "cellClick"-Event instead of "click"-Event. Just use the methods getRow() and getColumn() to calculate the clicked cell. Further you can delete the if-clause in the event listener because the event is only fired when really a cell was clic

Re: [qooxdoo-devel] Scroll bar issue in Firefox 3

2008-02-20 Thread Helder Magalhães
Fabian Jakobs-2 wrote: > > please submit it to the qooxdoo bug tracker. Maybe we can reduce the > problem to a firefox bug. Then we should file it there as well. > Done! :-) Problem was reduced to qooxdoo and submitted [1] to the framework's bug tracker. [1] http://bugzilla.qooxdoo.org/show_b

Re: [qooxdoo-devel] Ajax Status Indicator

2008-02-20 Thread Dirk Wellmann
Hi Kamesh, in my Application.js, direct in the head, before the Class.define I'll create a global Var: var gvPI = null; further on in my Constructor I create my ProcessingIndicator: var doc = qx.ui.core.ClientDocument.getInstance(); // ProcessingIndicator gvPI = new qviad

Re: [qooxdoo-devel] Qooxdoo Problem with table and widgets inside this table

2008-02-20 Thread Sandmann
Here is a part of my code. It has in the first column a checkbox and in the last column an image. But I´m not very satisfied with this kind of solution, because I´m now looking if a click happens if the underlying rendered component in the specific row and column is a picture. That means if you ha

[qooxdoo-devel] Themes in Qooxdoo with single Components?!?

2008-02-20 Thread Sandmann
Hi, I just tried the Theme feature and it works very good. Now I wonder what I should do, if I want different buttons in one page that have different themes... Can I use a theme with a single component (for example one button) and use another theme for another button? What I think right now is

Re: [qooxdoo-devel] Ajax Status Indicator

2008-02-20 Thread Kamlesh
Hi, Jim Thanks. I will search for the example, but here what I am doing. I am using qx.io.remote.Request compoent to fetch data from the server. I have animated GIF on page using Atom. Whenever I fetch data from server I toggle gif visibility. I think the way I am coding is not correct. If you p