Re: [qooxdoo-devel] Support Options for Qooxdoo

2008-12-28 Thread Kenny Tilton
thron7 wrote: >>Hi, >> >>I really like Qooxdoo so far, but need pretty fast & reliable tech support >>for me and my team to have maximum productivity. >> >>Does Qooxdoo and/or 1 & 1 offer enhanced support? > > > Hi Andre, > > no, I'm afraid as it stands neither the core team nor 1&1 offer commer

Re: [qooxdoo-devel] Looks like I broke something...

2008-12-21 Thread Kenny Tilton
thron7 wrote: >>Yes, QOOXDOO_PATH has changed. Remove /framework from the end, in your >>config.json. > > > Right, and on a more general line, for everybody working against trunk it > is a good idea to keep an eye on the commit messages, at least search them > when you run into trouble, because

[qooxdoo-devel] Looks like I broke something...

2008-12-19 Thread Kenny Tilton
I had been working from an SVN copy and when I saw the 0.8.1 release thought I would just update my SVN, now I get: C:\0ghx\nuviaghx\nuvia>..\..\qooxdoo\framework\generate.py build INITIALIZING: NUVIA

Re: [qooxdoo-devel] constructor / inheritance confusion

2008-12-18 Thread Kenny Tilton
Petr Kobalíček wrote: > Hi Kenny, > > I have short node to your problem. You need to pass constructor > parameters to table constructor. > > for example: > >construct : function (a, b) { >this.base(arguments, a, b); >} > > Was this your problem ? Yes, thanks. cheers, kt

[qooxdoo-devel] constructor / inheritance confusion

2008-12-18 Thread Kenny Tilton
I wanted to subclass qx.ui.table.Table because of a commonality I could reuse: qx.Class.define("nuvia.explorer.widget.ItemTable", { extend : qx.ui.table.Table, construct : function () { this.base(arguments); } }); Then I use it like this: var custom = { tableCo

Re: [qooxdoo-devel] Generator Bug Hunting Day (BHD)

2008-12-15 Thread Kenny Tilton
thron7 wrote: > Hi all, > > I would like to declare tomorrow, Tuesday December 16th, Generator Bug > Hunting Day :-). > > We have applied a lot of changes to the build process recently, some > fixing bugs, but also user-visible changes to config keys and their > processing. Is there a list of

[qooxdoo-devel] Windows disappear irretrievably on "minimize"

2008-12-15 Thread Kenny Tilton
I am creating childwindows out of qx.ui.window.Window. Works great except that clicking the minimize control makes the window disappear completely instead of docking at the bottom of the window. I notice this is true of the Window demo in the demos section: minimize yes, but disappear completel

[qooxdoo-devel] the road to qooxdoo

2008-12-12 Thread Kenny Tilton
http://smuglispweeny.blogspot.com/2008/12/road-to-qooxdoo.html thx to the qx team! kenny -- SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. The future of the web can't happen without you. Joi

Re: [qooxdoo-devel] Why is "source" in this URL from qooxdoo?

2008-12-12 Thread Kenny Tilton
Hey, Alexander... Alexander Back wrote: > Hi Kenny, > > Kenny Tilton wrote: > >>Whew! I could not really follow what Thomas wrote, but I saw an explicit >>mention of my problem: >> >>"The source version is normally only used during development and the &

[qooxdoo-devel] Table popup bug?

2008-12-12 Thread Kenny Tilton
I have a table with a huge number of columsn so maybe I am the first to see this: the way cool popup menu that lets me decide which columns are visible has some problems, possibly one deriving from the other: 1. The menu gets truncated by the browser window if it is too long, whether the positi

Re: [qooxdoo-devel] Why is "source" in this URL from qooxdoo?

2008-12-12 Thread Kenny Tilton
Alexander Back wrote: > Hi Kenny, > > see my comments below. > > Kenny Tilton wrote: > >>Sorry for a weird report but we have a vital demo in 24hrs and my >>qooxdoo setup has stopped working. No idea what I did moving things >>around. It is probably not a

Re: [qooxdoo-devel] How big are built files on average?

2008-12-10 Thread Kenny Tilton
Jim Hunter wrote: > I have to include most of the classes because I am lazy and haven't used > the correct requires clauses yet to make my file smaller (will do this > in time), so mine is 1.1 megs uncompressed. I require most of the > classes because I generate a lot of JavaScript on the fly fr

Re: [qooxdoo-devel] Why is "source" in this URL from qooxdoo?

2008-12-10 Thread Kenny Tilton
Jim Hunter wrote: > What juggling? I simply do a build, place the resulting two js files in > my main folder on the server and make sure that the resource folder (and > possibly the icon folder, I don't remember) is also in that directory > and you should be ready to go. I have never had an issu

Re: [qooxdoo-devel] Why is "source" in this URL from qooxdoo?

2008-12-10 Thread Kenny Tilton
Kenny Tilton wrote: > Sorry for a weird report but we have a vital demo in 24hrs and my > qooxdoo setup has stopped working. No idea what I did moving things > around. It is probably not a qooxdoo issue, but I am desperate so I am > sending up a flare. here goes: > > 1.

Re: [qooxdoo-devel] query regarding the table widget!!

2008-12-10 Thread Kenny Tilton
Gaurav Jauhri wrote: > > > Kenny Tilton wrote: > >> Gaurav Jauhri wrote: >> >> >>> Hi, >>> >>> Can anyone tell me the equivalent of the following snippet in 0.8. >>> I am migrating my application from 0.7 to 0.8. >>&g

[qooxdoo-devel] Why is "source" in this URL from qooxdoo?

2008-12-10 Thread Kenny Tilton
Sorry for a weird report but we have a vital demo in 24hrs and my qooxdoo setup has stopped working. No idea what I did moving things around. It is probably not a qooxdoo issue, but I am desperate so I am sending up a flare. here goes: 1. I am using qooxdoo downloaded just now from qooxdoo trun

Re: [qooxdoo-devel] query regarding the table widget!!

2008-12-10 Thread Kenny Tilton
Gaurav Jauhri wrote: > Hi, > > Can anyone tell me the equivalent of the following snippet in 0.8. > I am migrating my application from 0.7 to 0.8. > My table also uses columnmodel Resize property. > > var table = new qx.ui.tree.Tree(); > table.setHeight('1*'); > > According to the above lines,

[qooxdoo-devel] How big are built files on average?

2008-12-09 Thread Kenny Tilton
I am just looking for a ballpark number, but for reasonable screen with a few tab controls, data grids, buttons, search fields, select boxes... how big are folks built files running? Mine is coming out at 800k, 600k optimized. cheers, kt

Re: [qooxdoo-devel] How get an un-selected row un-highlighted including last Cell clicked.

2008-12-08 Thread Kenny Tilton
Derrell Lipman wrote: > On Mon, Dec 8, 2008 at 6:00 PM, Kenny Tilton <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > After unselecting (via control-click) the last row selected, whatever > cell within the row I happened to click retains a light blue

[qooxdoo-devel] How get an un-selected row un-highlighted including last Cell clicked.

2008-12-08 Thread Kenny Tilton
After unselecting (via control-click) the last row selected, whatever cell within the row I happened to click retains a light blue frame to indicate (I guess) that it is still the focus, albeit unselected. How can I lose that? (It just occurred to me to set the focus to null (tho the setFocusCe

Re: [qooxdoo-devel] No fancy table structure in qooxdoo?

2008-12-03 Thread Kenny Tilton
Jean-Baptiste BRIAUD -- Novlog wrote: > Hi Kenny, > > I'm not sure if it is exactly what you want but have a look to > GridLayout : > http://demo.qooxdoo.org/current/demobrowser/#layout~Grid_Simple.html > http://demo.qooxdoo.org/current/demobrowser/#layout~Grid_Complex.html > http://demo.qooxdoo

[qooxdoo-devel] No fancy table structure in qooxdoo?

2008-12-02 Thread Kenny Tilton
Straight HTML tables (and other JS frameworks) allow one to have a little fun and get away from straight columns/rows. For example, a single data cell can take up two columns and three rows, while the other fields on those three rows all just use a row each (but may vary in how many columns are

Re: [qooxdoo-devel] scroller won't put up scroll bars

2008-12-01 Thread Kenny Tilton
Christian Schmidt wrote: > Hi Kenny, > > no, I haven't tested your code with the Grow layout. I have used a > Canvas layout, but I think there is a general problem with using a label > as rich text in a scroll container. Possibly as well -- I love it when issues double up just to keep us on ou

Re: [qooxdoo-devel] scroller won't put up scroll bars

2008-12-01 Thread Kenny Tilton
Alexander Back wrote: > Hi Kenny, > > Kenny Tilton wrote: > >>Kenny Tilton wrote: >> >>>Derrell Lipman wrote: >>> >>> >>>>On Sat, Nov 29, 2008 at 11:08 PM, Kenny Tilton >>>><[EMAIL PROTECTED] <mailto:[EMAIL PROTEC

Re: [qooxdoo-devel] scroller won't put up scroll bars

2008-11-30 Thread Kenny Tilton
Kenny Tilton wrote: > Derrell Lipman wrote: > >>On Sat, Nov 29, 2008 at 11:08 PM, Kenny Tilton >><[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: >> >>I have a Label with rich=true holding a load of HTML in a smaller Scroll >>but I am

Re: [qooxdoo-devel] scroller won't put up scroll bars

2008-11-29 Thread Kenny Tilton
Derrell Lipman wrote: > On Sat, Nov 29, 2008 at 11:08 PM, Kenny Tilton > <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: > > I have a Label with rich=true holding a load of HTML in a smaller Scroll > but I am not getting scroll bars. > > > Ke

[qooxdoo-devel] scroller won't put up scroll bars

2008-11-29 Thread Kenny Tilton
I have a Label with rich=true holding a load of HTML in a smaller Scroll but I am not getting scroll bars. The _getContentHeightForWidth dutifully reports a height of 879 but strangely getHeight on the label returns null -- perhaps it has yet to be computed cuz I am printing all this just after

Re: [qooxdoo-devel] Am I using qx.ui.table.model.Remote incorrectly?

2008-11-27 Thread Kenny Tilton
I added support for a sort url to my qx.ui.table.model.Remote subclass, and discovered setParameter . Still offered purely FWIW/warts+all: qx.Class.define("nuvia.data.TablePagerJSON", { extend: qx.ui.table.model.Remote, construct: function(countURL, rowURL, sortURL, blocksize){

Re: [qooxdoo-devel] Is there a submit event?

2008-11-27 Thread Kenny Tilton
Fabian Jakobs wrote: > Hi Kenny, > >> Shucks, no. Have you heard of CLOS? Multiple inheritance, >> multimethods, metaclass hacking. Very popular, tho Paul Graham (see >> "Arc") and Dick Gabriel hate OO. >> >> A few years ago someone even gave a talk at the bi-annual Lisp >> conference saying JS

Re: [qooxdoo-devel] Can a widget listen for a property change event?

2008-11-27 Thread Kenny Tilton
Patrick Paskvan wrote: > On Tue, Nov 25, 2008 at 9:43 PM, Derrell Lipman > <[EMAIL PROTECTED]> wrote: > >>On Tue, Nov 25, 2008 at 4:50 PM, Patrick Paskvan <[EMAIL PROTECTED]> >>wrote: >> >>>We could tie population of the select box on it's "click" event. The >>>handler would change just a bit (as

Re: [qooxdoo-devel] top level function not recognized, only in "build" version

2008-11-25 Thread Kenny Tilton
Kenny Tilton wrote: > Kenny Tilton wrote: > >> I had a utiltity function I thought I could use several places so I >> just tossed it in at the toplevel. This works OK running against >> "source" but not "build". >> >> I suspect this is a J

Re: [qooxdoo-devel] top level function not recognized, only in "build" version

2008-11-25 Thread Kenny Tilton
Kenny Tilton wrote: > I had a utiltity function I thought I could use several places so I just > tossed it in at the toplevel. This works OK running against "source" but > not "build". > > I suspect this is a JS-specific question, but I amjust trying to cover

[qooxdoo-devel] top level function not recognized, only in "build" version

2008-11-25 Thread Kenny Tilton
I had a utiltity function I thought I could use several places so I just tossed it in at the toplevel. This works OK running against "source" but not "build". I suspect this is a JS-specific question, but I amjust trying to cover my bases before heading over to c.l.js. Is this toplevel deal ve

Re: [qooxdoo-devel] Am I using qx.ui.table.model.Remote incorrectly?

2008-11-25 Thread Kenny Tilton
Kenny Tilton wrote: > Hugh Gibson wrote: > >>>>There are a couple of design issues which you're seeing the >>> >>>results of. For one thing, there seem to be too many calls to >>> > > > Ah, I beat those into submission and all

Re: [qooxdoo-devel] Am I using qx.ui.table.model.Remote incorrectly?

2008-11-25 Thread Kenny Tilton
Hugh Gibson wrote: >>>There are a couple of design issues which you're seeing the >> >>results of. For one thing, there seem to be too many calls to >> Ah, I beat those into submission and all of a sudden the issues I had with tables not loading or clearing went away. Below is my working code

Re: [qooxdoo-devel] Am I using qx.ui.table.model.Remote incorrectly?

2008-11-24 Thread Kenny Tilton
Derrell Lipman wrote: > On Mon, Nov 24, 2008 at 4:54 PM, Kenny Tilton <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > I have a problem in which: > > Scenario: > > The users changes some search option. > >

[qooxdoo-devel] Am I using qx.ui.table.model.Remote incorrectly?

2008-11-24 Thread Kenny Tilton
I have a problem in which: Scenario: The users changes some search option. I recompute the server data behind a qx.ui.table.model.Remote instance R and call R.reloadData(). I observe R._loadRowCount firing and my server app answer zero. Problem: there is no ensuing R._loadRowData, I guess bec

Re: [qooxdoo-devel] Incomplete Remote Table Example

2008-11-24 Thread Kenny Tilton
Kenny Tilton wrote: > Alexander Back wrote: > >>Hi Kenny, >> >>just for completion (and for all other users out there using the Remote >>Table Model): I wrote a basic tutorial on how to implement it (client- >>and server-side). And of course, Derrell's

Re: [qooxdoo-devel] Incomplete Remote Table Example

2008-11-24 Thread Kenny Tilton
Alexander Back wrote: > Hi Kenny, > > just for completion (and for all other users out there using the Remote > Table Model): I wrote a basic tutorial on how to implement it (client- > and server-side). And of course, Derrell's demos is mentioned as well. > > -> http://qooxdoo.org/documentation

Re: [qooxdoo-devel] Is there a submit event?

2008-11-24 Thread Kenny Tilton
thron7 wrote: > >> I went ahead and trapped keypress and kick off the search if the key >> happens to be "Enter" -- nothing wrong with that. >> >> > > > That's what I have used, and what I would have suggested. > > Thomas > >>> ...the more we know the better we can help you. >>> >> >>

Re: [qooxdoo-devel] Is there a submit event?

2008-11-21 Thread Kenny Tilton
Jim Hunter wrote: > Submit is something you do from a form on a basic web page, not from an > application. Hmmm. In my experience is that even a desktop app sometimes/often lets a user fill out a form (supply parameters using more than one widget) and then tell the app "make it so". And these u

[qooxdoo-devel] Is there a submit event?

2008-11-21 Thread Kenny Tilton
changeValue works as a "submit" event if I type and then hit return, but if I type something in and then go away to click on other things the changeValue event fires (fine, but this also means it cannot be used to indicate a user "submit" action) but when I come back and hit return to kick off

Re: [qooxdoo-devel] Simple Question -- how find a widget by ID?

2008-11-21 Thread Kenny Tilton
Derrell Lipman wrote: > Thx, Derrell. My plan was to pass along the "regexp" in a closure > (sort of): > > b2.addListener("execute" > , function (e) { this._search(e,"regexp");} > , b2); > > What I need is a way to get at the input text field (or find

Re: [qooxdoo-devel] Simple Question -- how find a widget by ID?

2008-11-21 Thread Kenny Tilton
Derrell Lipman wrote: > On Fri, Nov 21, 2008 at 2:29 PM, Kenny Tilton <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > I have one search input field and several search initiation buttons, > each triggering a different kind of search. Normally I

[qooxdoo-devel] Simple Question -- how find a widget by ID?

2008-11-21 Thread Kenny Tilton
I have one search input field and several search initiation buttons, each triggering a different kind of search. Normally I would have the button handler find the search input field by name and get its value and send that to the server. But I just spent over an hour scanning the doc and cannot

[qooxdoo-devel] folders schmolders :)

2008-11-20 Thread Kenny Tilton
I swiped the code from this demo: http://demo.qooxdoo.org/current/demobrowser/#treevirtual~TreeVirtual_Multiple_Columns.html Pretty cool, but I really do not need the folder/file icons. I see the appearnce is being inherited from TreeVirtual: properties : { appearance : {

Re: [qooxdoo-devel] Incomplete Remote Table Example

2008-11-20 Thread Kenny Tilton
thron7 wrote: > > > >>> Yes maybe simpler, but avoiding inline (=anonymous) functions is >>> intended. >>> -> http://qooxdoo.org/documentation/0.8/antipatterns#inline_functions >>> >> >> >> Ummm..er..OK, that is just plain wrong! :) >> > > > Yes ... let's start a flame :). I could n

Re: [qooxdoo-devel] Incomplete Remote Table Example

2008-11-20 Thread Kenny Tilton
Alexander Back wrote: > Hi Kenny, > > Kenny Tilton wrote: > >>Alexander Back wrote: >> >>>Hi Kenny, >>> >>>just for completion (and for all other users out there using the Remote >>>Table Model): I wrote a basic tutorial on how

Re: [qooxdoo-devel] Code organization advice?

2008-11-20 Thread Kenny Tilton
Derrell Lipman wrote: > On Thu, Nov 20, 2008 at 8:38 AM, Kenny Tilton <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > > But this reminds me...does the table widget need similar elegance for > the handling of column widths? I have a simple two-co

Re: [qooxdoo-devel] Code organization advice?

2008-11-20 Thread Kenny Tilton
Alexander Back wrote: > Hi Kenny, > > Kenny Tilton wrote: > >>Looks like we'll be adopting qooxdoo. First impressions are really over >>the top. Anywho... > > Nice to hear that :-) > > >>Now that I am getting serious about qooxdoo I want to st

Re: [qooxdoo-devel] Incomplete Remote Table Example

2008-11-20 Thread Kenny Tilton
. btw, not sure this is good for pedagogy, but I think the code gets a little simpler when an anonymous function is provided to listeners. Thx again. cheers, kenny > > cheers, >Alex > > Kenny Tilton wrote: > >>Woohoo, getting close: I have a subclass of the remot

[qooxdoo-devel] Code organization advice?

2008-11-19 Thread Kenny Tilton
Looks like we'll be adopting qooxdoo. First impressions are really over the top. Anywho... Now that I am getting serious about qooxdoo I want to start getting my code base organized. One easy way to divide it up comes from the app itself being eally multiple browsers in one, with a tabview just

Re: [qooxdoo-devel] Incomplete Remote Table Example

2008-11-19 Thread Kenny Tilton
Petr Kobalíček wrote: > Hi Kenny, > > maybe you should start with simple model and try write some > editing/deleting stuff. Sage advice and I did consider that as a stepping stone when things got rough -- in fact, I was getting ready to set some break points in one of the demos just to find out

Re: [qooxdoo-devel] Incomplete Remote Table Example

2008-11-19 Thread Kenny Tilton
Derrell Lipman wrote: > > On Wed, Nov 19, 2008 at 3:48 PM, Kenny Tilton <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > Woohoo, getting close: I have a subclass of the remote table model at > least getting its rowcount back from Lisp and bein

[qooxdoo-devel] Incomplete Remote Table Example

2008-11-19 Thread Kenny Tilton
Woohoo, getting close: I have a subclass of the remote table model at least getting its rowcount back from Lisp and being reported accurately by the table view, but that's it no rows. And I do not see Lisp being hit for the rowdata URL, so I guess no one is asking. The example: http://demo.q

Re: [qooxdoo-devel] How to resize to whole window?

2008-11-18 Thread Kenny Tilton
Kenny Tilton wrote: > I am trying to get something pretty simple, a layoout that > expands/shrinks to utilize the full browser window (absent toolbars of > course). > ... > I looked at a Dock layout but that just allows docking to one edge and I > need edges south /and/ ea

[qooxdoo-devel] How to resize to whole window?

2008-11-18 Thread Kenny Tilton
I am trying to get something pretty simple, a layoout that expands/shrinks to utilize the full browser window (absent toolbars of course). I want for now a fixed header in the form of a jpg img, and below that a tab view using the rest of the available space. The setup below achieves that with

Re: [qooxdoo-devel] qooxdoo python build in question [was:] Using SVN trunk rather than build [was:] Passing named parameter without the URL

2008-11-18 Thread Kenny Tilton
Jean-Baptiste BRIAUD -- Novlog wrote: > Even if I fully (I think) understand all the power and advantages of > that qooxdoo build system, I have to say that this was the biggest > negative thing I found in qoxdoo. > Let me explain and be sure I really appreciate qooxdoo but we also > have to

[qooxdoo-devel] Time for qxbuild? [was Re: build vs source]

2008-11-18 Thread Kenny Tilton
Alexander Back wrote: > Hi Kenny, > > On Tuesday 18 November 2008 Kenny Tilton wrote: > >>I was having trouble loading my page using my Lisp server. I saw dozens >>of separate requests pulling in bits of JS, and then nothing, just a >>blank screen. > > Th

Re: [qooxdoo-devel] Simple tree navigation

2008-11-18 Thread Kenny Tilton
thron7 wrote: > Kenny, > > maybe a bit of background info regarding this topic, if you have the time. > > Within the qooxdoo world there are various different hierarchies where > you have parent-child relations. Yeah, I realized what was going on right away (been using/building frameworks s

[qooxdoo-devel] build vs source

2008-11-17 Thread Kenny Tilton
I was having trouble loading my page using my Lisp server. I saw dozens of separate requests pulling in bits of JS, and then nothing, just a blank screen. I had seen problems before loading big Dojo setups which seemed clearly a timing problem, so with qooxdoo I did a "build" run of generate.py

Re: [qooxdoo-devel] Simple tree navigation

2008-11-17 Thread Kenny Tilton
Petr Kobalíček wrote: > Hi Kenny, > > I don't know what you are really doing,... Me neither, at the time. :) The widget I wanted was SelectBox, and it is working like a charm. I need to slow down a little. Thanks for all the trouble you took. My next train wreck will be loading data from the s

Re: [qooxdoo-devel] Simple tree navigation

2008-11-17 Thread Kenny Tilton
Kenny Tilton wrote: > My first qooxdoo trick is modifying the SplitButton example to have the > button reflect the selected value: > >menuItem.addListener("execute", function(e){ > button.setLabel(this.getLabel()); > }); > > Where

[qooxdoo-devel] Simple tree navigation

2008-11-17 Thread Kenny Tilton
My first qooxdoo trick is modifying the SplitButton example to have the button reflect the selected value: menuItem.addListener("execute", function(e){ button.setLabel(this.getLabel()); }); Where the anonymous function closes over the local variable button to kn

Re: [qooxdoo-devel] Suggestion for generate.py error handling...

2008-11-17 Thread Kenny Tilton
thron7 wrote: > Kenny, > > >> I had the wrong path to a class (...form.Label instead of >> ..basic.Label) and did not notice the mid-output "Unknown class" >> error. Not that I even looked. :) But two thoughts: >> >> Can generate.py end with something like "Failed" instead of "Done"? >> Ma

[qooxdoo-devel] Suggestion for generate.py error handling...

2008-11-17 Thread Kenny Tilton
I had the wrong path to a class (...form.Label instead of ..basic.Label) and did not notice the mid-output "Unknown class" error. Not that I even looked. :) But two thoughts: Can generate.py end with something like "Failed" instead of "Done"? Maybe in an ascii banner full of scary asterisks? W

Re: [qooxdoo-devel] Nooby Qs

2008-11-16 Thread Kenny Tilton
Kenny Tilton wrote: >>>I am going thru the examples on Google Chrome and they all work, but >>>one >>>thing that did not work was the Hello World tutorial. Safari and FF >>>have >>>no problem loading the same page. Kinda curious about that. &g

Re: [qooxdoo-devel] Nooby Qs

2008-11-16 Thread Kenny Tilton
Jean-Baptiste BRIAUD -- Novlog wrote: > On 16 Nov 2008, at 15:30, Kenny Tilton wrote: > > >>I am assessing JS frameworks, um, at the same time I am building a >>rush >>Web application. Got real far with jQuery but wanted more >>professional/consistent widg

[qooxdoo-devel] Nooby Qs

2008-11-16 Thread Kenny Tilton
I am assessing JS frameworks, um, at the same time I am building a rush Web application. Got real far with jQuery but wanted more professional/consistent widgets. Dojo currently leads but the (absent) doc and examples got old so I looked at YUI. Great doc and examples but dubious quality of wid