Re: [qooxdoo-devel] Final size

2007-04-13 Thread Rahul Sharma
This is my first assignment with Juniper, earlier usages were with other companies. I am pushing for Qooxdoo for some internal webapps against the likes of YUI ext, Dojo, ActiveWidgets, Bindows(guys look at these commercial packages and grab couple of goodies from them). Right now we are in evalu

Re: [qooxdoo-devel] Still lost with API Viewer (docummentation)

2007-04-13 Thread Jim Hunter
Do a Google on 'JSON object array'. If you are not familiar with JSON, you might want to get familiar with it. Unfortunately, the ListView only seems to work with JSON objects and not standard JavaScript arrays. The Table control does work nicely with JS arrays, you might think of looking into usi

Re: [qooxdoo-devel] Final size

2007-04-13 Thread Sebastian Werner
Am 13.04.2007 um 20:46 schrieb Rahul Sharma: > We have been using this technique for Qooxdoo for more than one and a > half years. Now we have used qooxdoo and these techniques on 4 > products, > tested with multiple browsers. > > The next great approach would be to sub-divide qooxdoo into four

Re: [qooxdoo-devel] Window always on top?

2007-04-13 Thread Jim Hunter
You are contradicting yourself. You state that AOT windows are always on top, yet you state that a modal window, like a File Dialog would be on top when it was created so it can't be created behind an AOT window. You can't have it both ways. A window can't always be on top, except when it doesn't

[qooxdoo-devel] Still lost with API Viewer (docummentation)

2007-04-13 Thread Jonis
I think that i'm doing something wrong... I can't find some infos on API docummentation!! Ex: ld.push({ cod : { html : dados[i][0] }, nome : { html : dados[i][1] }, tipo : { html : dados[i][2] }

Re: [qooxdoo-devel] Window always on top?

2007-04-13 Thread Ralf Sternberg
Hi Jim, Jim Hunter schrieb: > I think you are confusing an Always-On-Top and Modal. Indeed, there are two different concepts that should not be confused: *modality* is about blocking other windows, *always-on-top* is about the highest z-index. I think we should take existing window managers as

[qooxdoo-devel] Firefox Vanishing Caret Bug Fix Problem

2007-04-13 Thread Christian Boulanger
Hello, Hugh Gibson, praised be his name, has been so kind as to share his fix for the annoying Firefox-vanishing-caret-bug http://qooxdoo.org/documentation/snippets/show_caret_in_dialogs_in_ff?s=firefox%20bug I have used it in my tests and it works nicely. However, I ran into a problem that mi

Re: [qooxdoo-devel] Final size

2007-04-13 Thread Rahul Sharma
We have been using this technique for Qooxdoo for more than one and a half years. Now we have used qooxdoo and these techniques on 4 products, tested with multiple browsers. The next great approach would be to sub-divide qooxdoo into four - five major javascript files (functionality wise) instead

[qooxdoo-devel] Flash Player modifications for tag

2007-04-13 Thread Rahul Sharma
Hi, In the qx.ui.embed.Flash object, there are instances when you need to have the id of the Flash object to call TGoTolabel and then invoke a Flash object function from javascript. Now the problem with qooxdoo is that it doesn't set any variables for tag. There is static line html.push("");

[qooxdoo-devel] BUG?

2007-04-13 Thread Jonis
Still with ListView.. I don't knwo if this is a bug, but.. when i try to set a header colum align to center, didn't work for header (just for content). If i try to use "right" or "left", everything works fine...header and content are aligned to right or left. --

Re: [qooxdoo-devel] ListView

2007-04-13 Thread Jonis
Solved... just add to lc: open : { label : "Abrir", width: 80, type : "link" Jonis escreveu: > In the listview demo, what's 'open' for and how can i use? > I think is to open an URL (d) but how to use? > > > Code: >var ld = []; >var lt = [ "Image", "Text", "PDF", "Illustration", "D

[qooxdoo-devel] ListView

2007-04-13 Thread Jonis
In the listview demo, what's 'open' for and how can i use? I think is to open an URL (d) but how to use? Code: var ld = []; var lt = [ "Image", "Text", "PDF", "Illustration", "Document" ]; for (var i = 0, t; i < 1000; i++) { t = Math.round(Math.random() * 4); ld.push({ nam

Re: [qooxdoo-devel] Window always on top?

2007-04-13 Thread Jim Hunter
I think you are confusing an Always-On-Top and Modal. It is always possible to open another application on top of your modal window, but what should not be possible is for your application-Always On Top window to open a modal window that opens up under itself. In your description that is what woul

Re: [qooxdoo-devel] property: Validator

2007-04-13 Thread Jonis
Hummm.property Validator of TextField isn't for validating the field?? I'm trying to use...but without success dperez escreveu: > Hola Jonis. > > Sorry I don't understand your question. > I'm out of context. > > > Jonis Maurin Ceara-2 wrote: >> How can i use this property? >> >> In API do

Re: [qooxdoo-devel] Final size

2007-04-13 Thread Leander Hanwald
Hi Jonis, only for your information: With my Linux Firefox 2.0.0.3 it works good and the page loads in under 4 seconds. Greetings, Leander Jonis wrote: > New! :P > > Instead of call external javascript, just put the content on current > page and gzip it!! > My results: > > > Ex: > require_o

Re: [qooxdoo-devel] Final size

2007-04-13 Thread Jonis
New! :P Instead of call external javascript, just put the content on current page and gzip it!! My results: Ex: Estagio if (!q

Re: [qooxdoo-devel] Window always on top?

2007-04-13 Thread Ralf Sternberg
Hi, I didn't notice that this thread continues ... Alex Beck: > currently there is no solution out-of-the-box available. > How has to look the API in your case? Should this "on-top" property be > application-wide or do you need another/finer control? Application wide suffices. In SWT, which i

Re: [qooxdoo-devel] Final size

2007-04-13 Thread Dirk Wellmann
Hi, just tested it with a bigger application and it worked with FF 2 and IE7! Just compressed the xxx.js to xxx.js.gz with gzip. Does anybody know to make tomcat handling these compressed stuff? With apache2 it works, access via Servlet won't work. Regards Dirk Sebastian Werner schrieb: > Hu

Re: [qooxdoo-devel] Problem with ComboBox and tr()

2007-04-13 Thread Daniel Haferkorn
> Hi again, I just wrote a workaround for the issue that the selected entry wont be translated in my application. The event listener for the language changer now stores the selected ListItem, then changes the selection to the first item, which is "?" and will never be translated :) and changes th

Re: [qooxdoo-devel] Final size

2007-04-13 Thread Sebastian Werner
Hugh Gibson schrieb: >> But why when you load source version the final size is smaller? > > No, it's not. > > If you load the source version and then run it under a Javascript debugger > like Firebug you will see hundreds of script files are being loaded. They add > up to a much bigger bunch of

Re: [qooxdoo-devel] property: Validator

2007-04-13 Thread dperez
Hola Jonis. Sorry I don't understand your question. I'm out of context. Jonis Maurin Ceara-2 wrote: > > How can i use this property? > > In API documentation i can't find anything, just the method IsValid() > and property Validator. > > I've tryied this (sorry, i'm really really newbie in