Re: [qooxdoo-devel] TreeFullControl 2 Example with Checks only on leaves

2007-06-04 Thread derrell . lipman
FrozenDice <[EMAIL PROTECTED]> writes: > So I like the TreeFullControl Example #2 with the checkboxes, it's > almost what I need. I want it to only have checkboxes on the lowest > level. What I mean is there would only be checkboxes on leaves, and > anything with children in it wouldn't have a c

[qooxdoo-devel] TreeFullControl 2 Example with Checks only on leaves

2007-06-04 Thread FrozenDice
So I like the TreeFullControl Example #2 with the checkboxes, it's almost what I need. I want it to only have checkboxes on the lowest level. What I mean is there would only be checkboxes on leaves, and anything with children in it wouldn't have a checkbox. This seems like it should be simple en

Re: [qooxdoo-devel] Error: console is not defined in line 170 of Object.js in 0.7 trunk

2007-06-04 Thread Sebastian Werner
This is already known and mentioned in the newly created bug http://bugzilla.qooxdoo.org/show_bug.cgi?id=462 Please note that the rework/fix will not be available with 0.7 final. Sebastian Dietrich Streifert schrieb: > I've found the error by replacing console.warn with alert so I could see

[qooxdoo-devel] Remote Columns in RemoteTableModel? (v0.6.6)

2007-06-04 Thread C.Bieser
Hello together, how is it possible to set a complete Column Model via RemoteTableModel, including visibility, sort ability and width of each column? I've tried to call a function while _loadRowCount but then the result is empty: no error, no table model. Any Ideas? Thank You, Christian Bieser

Re: [qooxdoo-devel] Error: console is not defined in line 170 of Object.js in 0.7 trunk

2007-06-04 Thread Dietrich Streifert
I've found the error by replacing console.warn with alert so I could see from which object the error comes. But the problem remains that console is obviously not available in this state. Dietrich Streifert schrieb: > Hello List, > > I get the following error on initialization of my applicatio

[qooxdoo-devel] Error: console is not defined in line 170 of Object.js in 0.7 trunk

2007-06-04 Thread Dietrich Streifert
Hello List, I get the following error on initialization of my application: console is not defined http://nra/qooxdoo.dev/frontend/framework/source/class/qx/core/Object.js Line 170 I think this is due to an attempt to call dispose() on an object but the warning is never displayed because console

Re: [qooxdoo-devel] Bug with default property values in qx.io.remote.Request in qx 0.7?

2007-06-04 Thread Dietrich Streifert
Fixed in rev. 8374 of trunk as described below: Dietrich Streifert schrieb: > Hello List, > > one of the advantages of the new property system in qx 0.7 is the > possibility to refine the init attribute, the default value of a property. > > In qx.io.remote.Request the properties "method" and "res

Re: [qooxdoo-devel] How do I refine the apply method of a property in 0.7?

2007-06-04 Thread Dietrich Streifert
Sebastian Werner schrieb: Dietrich Streifert schrieb: Moin Sebastian, Let's go back to the apply method: What would be the cost of allowing the modification of the apply attribute of properties? This was my problem which lead to this thread. Within a derived widget I wanted to overrid

Re: [qooxdoo-devel] Declaration of nullable property with array check attribute

2007-06-04 Thread Sebastian Werner
Dietrich Streifert schrieb: > Ok, so null is implicitly allowed if I define nullable: true right? yes :) > > > Sebastian Werner schrieb: >> Hi Dietrich, >> >> nullable is the only requirement in 0.7. You can remove "null" from the >> "check" list. >> >> Sebastian >> >> >> Dietrich Streifert s

[qooxdoo-devel] Bug with default property values in qx.io.remote.Request in qx 0.7?

2007-06-04 Thread Dietrich Streifert
Hello List, one of the advantages of the new property system in qx 0.7 is the possibility to refine the init attribute, the default value of a property. In qx.io.remote.Request the properties "method" and "responseType" are defined as follows: method : { check : [ qx.net.Http.MET

Re: [qooxdoo-devel] Declaration of nullable property with array check attribute

2007-06-04 Thread Dietrich Streifert
Ok, so null is implicitly allowed if I define nullable: true right? Sebastian Werner schrieb: Hi Dietrich, nullable is the only requirement in 0.7. You can remove "null" from the "check" list. Sebastian Dietrich Streifert schrieb: Hello List, on my way from 0.6.6 to 0.7 I've encounte

Re: [qooxdoo-devel] Declaration of nullable property with array check attribute

2007-06-04 Thread Sebastian Werner
Hi Dietrich, nullable is the only requirement in 0.7. You can remove "null" from the "check" list. Sebastian Dietrich Streifert schrieb: > Hello List, > > on my way from 0.6.6 to 0.7 I've encountered the following problem: > > I have a property which should be nullable and want to restrict t

Re: [qooxdoo-devel] How do I refine the apply method of a property in 0.7?

2007-06-04 Thread Sebastian Werner
Dietrich Streifert schrieb: > Moin Sebastian, > > Let's go back to the apply method: > > What would be the cost of allowing the modification of the apply > attribute of properties? > > This was my problem which lead to this thread. > > Within a derived widget I wanted to override the apply me

[qooxdoo-devel] Declaration of nullable property with array check attribute

2007-06-04 Thread Dietrich Streifert
Hello List, on my way from 0.6.6 to 0.7 I've encountered the following problem: I have a property which should be nullable and want to restrict the possible values with an array of allowed values. Because null is allowed I tried the following: busy : { check : [ "init", "load", "

Re: [qooxdoo-devel] How do I refine the apply method of a property in 0.7?

2007-06-04 Thread Dietrich Streifert
Moin Sebastian, Let's go back to the apply method: What would be the cost of allowing the modification of the apply attribute of properties? This was my problem which lead to this thread. Within a derived widget I wanted to override the apply method of the superclass. It turned out that th

Re: [qooxdoo-devel] Refinement of properites in a mixin?

2007-06-04 Thread Sebastian Werner
Dietrich Streifert schrieb: > Well after digging around in Class.js if found that there is a method > named patch. So instead doing: > > qx.Class.include(qx.ui.form.TextField,qx.visionet.ui.form.MTextField); > > I have to do > > qx.Class.patch(qx.ui.form.TextField,qx.visionet.ui.form.MTextField

Re: [qooxdoo-devel] How do I refine the apply method of a property in 0.7?

2007-06-04 Thread Sebastian Werner
Ok, there are multiple reasons. One major argument is that type changes would allow to switch types completely e.g. from check=String to check=Number for example. Most people would tend to say that this is a bad software design. Another, more technical reason, is that all other changes than ini

Re: [qooxdoo-devel] Migration and 1 class per file.

2007-06-04 Thread Sebastian Werner
Not using one class per file I problematic. It will break a lot of stuff e.g. things like the API viewer, the include sort system, the file tracer (to find out the name of a class and its requirements). I would say it by far easier to split files up than to support such things in our build syst

[qooxdoo-devel] Making Qooxdoo "desktop" scrollabe

2007-06-04 Thread Daniel Haferkorn
Hello, I'd like to implement a print view for my application so that the users can print out the needed content. For this, I hide most of the widgets, so that I only have a vertical box layout containing a toolbar, a table and a status bar. The problem is that the table contains quite a few en

Re: [qooxdoo-devel] User definded IDs for TableRows? (in v0.6.6)

2007-06-04 Thread Daniel Haferkorn
Hello Nick, thank you for that example code. Seems to be working very well. :) Regards, Daniel Haferkorn Nick Glencross wrote: > Basically when you set up the SimpleTableModel and call setColumns you > are defining the number of columns which will be displayed. When you do > your SetData to su

Re: [qooxdoo-devel] File upload widget for qooxdoo 0.7 beta3 available

2007-06-04 Thread Dietrich Streifert
Hi Nick! Thank you for your report. The problem was a missing overflow:"hidden" for the FileUpload widget. I have corrected that and created a new attachment to the bugzilla issue: http://bugzilla.qooxdoo.org/attachment.cgi?id=178 The Problem behind this seems to be the TextField implementat

Re: [qooxdoo-devel] Example qooxdoo test doesn't work

2007-06-04 Thread Alex Back
Hi Ruben. ruben gonzalvez wrote: > Hi Alex, > > I'm afraid of you don't understanme. > > I can build a simple textfile, button or icon, > > but I can't build the rest of things such as splitpane, textarea, . What do you mean with this? Is the build process failing or does the application thro

Re: [qooxdoo-devel] Written a small alpha-status Gui Builder

2007-06-04 Thread Fabian Jakobs
Leander Hanwald schrieb: > Hi everyone, > > I tested Tibco some days ago and saw this nice little GUI Builder say have. > But has far I can could see there lib isn't better then Qooxdoo, so why > hasn't qooxdoo such a GUI Builder? :) > > So I tested for myself if qooxdoo can handle it, and yes I th