Re: [qooxdoo-devel] Drag n Drop does not work in build version

2007-04-11 Thread Hugh Gibson
> In the build version of the same > application, the dragstart event does not get fired. I don't get an > error message. Hope somebody has a clue where to look. A wild guess: Are you sure that all the relevant files are being included in the built version? You might have to tell the compiler t

Re: [qooxdoo-devel] Newbie

2007-04-11 Thread Jim Hunter
In the API Viewer, there is a list of Properties. All Properties have setters and getters. So look for Value in the Property list to get a description of it. The use of Value in your code would be setValue() and getValue(). Good examples are things like Width and Height. That is how they are liste

Re: [qooxdoo-devel] Changing the default background colour

2007-04-11 Thread Tom Hunter
Hi Alex, Thanks a lot for your help with this. I've implemented the workaround, but note that you need to move the values to the "state" (singular, not plural) function. My code is below for information. Anyway, thanks again, much appreciated. Tom qx.OO.defineClass("ajax_ide.theme.appearance

Re: [qooxdoo-devel] Newbie

2007-04-11 Thread Jonis
Thank you!! By now, iam just trying to build my interface. I have one more question: where can i find full methods and properties list? In API Viewer i can't find all methods and properties... for example: TextField have "setValue" method but i can't find on API Viewer. (ex: CurrentInput.setVal

Re: [qooxdoo-devel] Drag n Drop does not work in build version

2007-04-11 Thread Dirk Wellmann
Hi Stefan, In your Project start a make clean and then make build than in these cases delete your Browser-Cache and test again. I've often problems with the JS-Caching in Firefox 2.x. Regards Dirk Stefan Luechinger schrieb: >Hi > >I've a table with a registered dragstart event handler. It wo

[qooxdoo-devel] Drag n Drop does not work in build version

2007-04-11 Thread Stefan Luechinger
Hi I've a table with a registered dragstart event handler. It works perfectly fine in my source version. In the build version of the same application, the dragstart event does not get fired. I don't get an error message. Hope somebody has a clue where to look. Thanks Stefan

Re: [qooxdoo-devel] String optimization on static classes

2007-04-11 Thread Peter Schneider
Hello again, I know what you mean, but that's not what I was wondering about. The Map keys do stay the way they are (of course), only the values will be replaced. Or at least the ones with a lowercase letter in the key's name. Maybe my example wasn't that good ;) So here's another (better?) try:

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

2007-04-11 Thread Peter Schneider
Hi Daniel, I experienced the same with my application here... It is annoying, but not unsolvable: just "force" 'em to String()... var noItem = new qx.ui.form.ListItem(String(this.tr("No"))); ...and you're off. I know it's really weird why other qooxdoo-classes seem to get it right, while the

[qooxdoo-devel] custom appearances in 0.7-alpha2

2007-04-11 Thread Florian Probst
Hi, i've got a problem with my custom appearance using qooxdoo 0.7-alpha2. I'd like to extend "qx.theme.appearance.Classic" and merge it with my own style-definitions. In 0.7-alpha1 the following code worked fine: qx.Class.define("de.cas.qxProject.theme.MyAppearance", { type

Re: [qooxdoo-devel] String optimization on static classes

2007-04-11 Thread Daniel Haferkorn
>Peter Schneider tis-gmbh.de> writes: > > Hi there, > > is there a reason why Map assignments in static classes that have an > all-uppercase key are not subject to string optimization? > (...) > I figured out, that the condition is explicitly checked in stringoptimizer.py, > so I was wondering

Re: [qooxdoo-devel] Newbie

2007-04-11 Thread Leander Hanwald
Hi Jonis, you could use the new backend of qooxdoo which contains examples in java and php how to write a qooxdoo <-> php interface (http://qooxdoo.org/download: Install a Powerful RPC Backend) There are also examples for this in the showcase: http://demo.qooxdoo.org/current/sample/html/test/RPC_1

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

2007-04-11 Thread Daniel Haferkorn
Hello, I have a problem with the ComboBox widget and the translation of Strings. For example, I create a combo box: var combo = new qx.ui.form.ComboBox; now I add some list items and make sure that one is selected when the application is started: var unsureItem = new qx.ui.form.ListItem("?"); va

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

2007-04-11 Thread Jim Hunter
In my opinion, the Z-Index of Windows might look like this: 1000-1999 : Z-Index of normal windows 2000-2999 : Z-Index of 'Alway on Top' windows, last one created has the highest Z-Index 3000+ : Z-Index of Modal Windows, they should pop up over 'Always on Top' Windows. Just my opinion, Ral

[qooxdoo-devel] Newbie

2007-04-11 Thread Jonis
Hi. I started testing qooxdoo today. Everything is working fine, i'had compiled showcase and is working fine. Now i'll start my page but i have one question: where do i customize my data? I know qooxdoo is just for GUI building.but where can i put my data? I have some forms with fields tha

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

2007-04-11 Thread Alex Back
Hi Ralf, 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? cheers, Alex On Thursday 05 April 2007 Ralf Sternberg wrote: > Hi, > > is there a way keep a certain

Re: [qooxdoo-devel] 0.7-alpha2 singletons: getInstance() arguments

2007-04-11 Thread news
In the case of two singletons A,B where an instance of B is created in the constructor of A and the constructor of B needs to have a reference to A it would also be possible to to use A.getInstance(), if A.getInstance() would return the not yet fully constructed A; otherwise a new instance of A

Re: [qooxdoo-devel] Changing the default background colour

2007-04-11 Thread Alex Back
Hi Tom, the problem you described is a bug in qooxdoo. I opened a bug-report for this problem. Just take a look at http://bugzilla.qooxdoo.org/show_bug.cgi?id=369 Fortunately, there is a workaround for this problem (also described at the bug report). Just move your values from the "initial" to

Re: [qooxdoo-devel] Changing the default background colour

2007-04-11 Thread Alex Back
Hi Tom, the problem you described is a bug in qooxdoo. I opened a bug-report for this problem. Just take a look at http://bugzilla.qooxdoo.org/show_bug.cgi?id=369 Fortunately, there is a workaround for this problem (also described at the bug report). Just move your values from the "initial" to

Re: [qooxdoo-devel] xslt-transformations in the makefile - new problem

2007-04-11 Thread Christian Boulanger
Hi, for who is interested: Since it did the job, I did not use any possibly existing makefile syntax but a simple shell syntax: transform: @for xmlfile in $(QXTRANSFORMER_XML_DIR)/*.$(QXTRANSFORMER_EXTENSION); do \ targetfile=$(QXTRANSFORMER_CLASS_PATH)/`basename $$xmlfile | sed s/

[qooxdoo-devel] String optimization on static classes

2007-04-11 Thread Peter Schneider
Hi there, is there a reason why Map assignments in static classes that have an all-uppercase key are not subject to string optimization? To clarify this, here's an example: - [...] qx.OO.defineClass("application.Constants", { sLOGO_ICO