Re: [qooxdoo-devel] qx.ui.table.cellrenderer.Dynamic

2007-10-10 Thread Tobias Koller (GERMO GmbH)
Hi, sorry for the flood of mails ;) I just wanted to add, that I would like to use the celleditor.CheckBox() first and I need an example what to do that the checkbox works fine ;) Is the celleditor.CheckBox() replacing the cellrenderer.Boolean()? Thanks again ;) Tobias Von: [EM

[qooxdoo-devel] Multi-row table header

2007-10-10 Thread Kirk Abbott
Hello All, Does anyone have a demo/prototype of a multi-row table header? I saw that it's on the wishlist. Let me know. Kirk. - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find proble

Re: [qooxdoo-devel] qx.ui.table.cellrenderer.Dynamic

2007-10-10 Thread Tobias Koller (GERMO GmbH)
Hi, Ok, I'm using the cellrenderer.Dynamic instead of celleditor.Dynamic. Could someone give me a short code-snippet how to use the celleditor.Dynamic? Thanks! Tobias Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Tobias Koller (GERMO GmbH) Gesendet: Donnerstag, 11

Re: [qooxdoo-devel] qx.ui.table.cellrenderer.Dynamic

2007-10-10 Thread Tobias Koller (GERMO GmbH)
Hi christian, Unfortunately there is no method createCellEditor in widget qx.ui.table.cellrenderer.Dynamic which is this.getTableColumnModel().getDataCellRenderer(column) what is wrong? Thank you Tobias Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von bibliograph Gesendet

[qooxdoo-devel] Synchronous calls with qx.io.remote.Request

2007-10-10 Thread Jim Hunter
I have started seeing that setAsynchronous(false) is not working with qx.io.remote.Request. The call operates the same with or without the setting being changed. This is something that was working perfect a few weeks ago but because of a bug I was tracking down I realized that it is not working rig

[qooxdoo-devel] html embed loses scroll position when hidden/unhidden

2007-10-10 Thread John David Lee
I have an application with several html embeds. A problem I've been having is that when an embed is hidden and then unhidden, it doesn't save the position of the scroll bar. The same thing happens if the embed's parent is hidden and unhidden. This isn't a very big deal, but can be somewhat anno

Re: [qooxdoo-devel] How to override an auto-generated getter/setter?

2007-10-10 Thread Jim Hunter
Excellent explanation! Thanks for the info. Jim On 10/10/07, Derrell Lipman <[EMAIL PROTECTED]> wrote: > > On 10/10/07, Jim Hunter <[EMAIL PROTECTED]> wrote: > > > > I see how simple transform looks, but how does it differ from apply? > > > > "apply" lets you *do* something when the value is chan

Re: [qooxdoo-devel] How to override an auto-generated getter/setter?

2007-10-10 Thread Derrell Lipman
On 10/10/07, Jim Hunter <[EMAIL PROTECTED]> wrote: > > I see how simple transform looks, but how does it differ from apply? > "apply" lets you *do* something when the value is changed. "transform" happens earlier, and lets your class *transform*, i.e. modify the value that's passed to the setter.

Re: [qooxdoo-devel] How to override an auto-generated getter/setter?

2007-10-10 Thread Jim Hunter
My apologies, my search function does not look in attachments and I had not seen your attachment earlier. I see how simple transform looks, but how does it differ from apply? You had a reference to 'apply : "_applyText",' in your code but no _applyText method was in your code for me to compare func

Re: [qooxdoo-devel] How to override an auto-generated getter/setter?

2007-10-10 Thread Derrell Lipman
On 10/10/07, Jim Hunter <[EMAIL PROTECTED]> wrote: > > It may be 'documented', but this is all that is mentioned of it: > > transformString On setting of the property value the method of the > specified name will be called. The signature of the method is > function(value). The parameter value is th

Re: [qooxdoo-devel] How to override an auto-generated getter/setter?

2007-10-10 Thread Jim Hunter
It may be 'documented', but this is all that is mentioned of it: transformString On setting of the property value the method of the specified name will be called. The signature of the method is function(value). The parameter value is the value passed to the setter. The function must return the mod

Re: [qooxdoo-devel] How to override an auto-generated getter/setter?

2007-10-10 Thread Derrell Lipman
On 10/10/07, Jim Hunter <[EMAIL PROTECTED]> wrote: > I had never used either apply or transform, and after reading through the > documentation only the apply is documented. And it looks like that can only > be used to modify the setter. As it turns out, the code I was needing to > over ride was the

Re: [qooxdoo-devel] How to override an auto-generated getter/setter?

2007-10-10 Thread Jim Hunter
I had never used either apply or transform, and after reading through the documentation only the apply is documented. And it looks like that can only be used to modify the setter. As it turns out, the code I was needing to over ride was the getter of a custom property not the setter. I don't see an

Re: [qooxdoo-devel] How to override an auto-generated getter/setter?

2007-10-10 Thread Derrell Lipman
On 10/10/07, Jim Hunter <[EMAIL PROTECTED]> wrote: > A normal way of wanting to over ride the auto-generated setter and getter > would be if you create your own class and add a property to it. The > framework would then generate the setter and getter, but what if I wanted my > own custom setter? I

Re: [qooxdoo-devel] How to override an auto-generated getter/setter?

2007-10-10 Thread Jim Hunter
A normal way of wanting to over ride the auto-generated setter and getter would be if you create your own class and add a property to it. The framework would then generate the setter and getter, but what if I wanted my own custom setter? I have run into this scenario and actually ended up using a d

Re: [qooxdoo-devel] Patch to qx.ui.table.model.Remote: setValue() method implemented

2007-10-10 Thread Derrell Lipman
On 10/10/07, bibliograph <[EMAIL PROTECTED]> wrote: > Derrell Lipman schrieb: > > On 10/10/07, bibliograph <[EMAIL PROTECTED]> wrote: > > > >> I think it should be left to the developer to decide whether she or he > >> lets the two states get out of sync or not, but I am updating the table > >> cel

Re: [qooxdoo-devel] Modify Build Process for Loading screen

2007-10-10 Thread bibliograph
qooxdoo schrieb: > Hi, > I posted a couple of weeks ago about how to create a loading screen. Not a > "loading data" screen, but some visual indication of progress when qooxdoo > first loads it's classes. Christian advised me to modify the build process and > it worked!! Thanks! > > I'm thinkin

Re: [qooxdoo-devel] Patch to qx.ui.table.model.Remote: setValue() method implemented

2007-10-10 Thread bibliograph
Derrell Lipman schrieb: > On 10/10/07, bibliograph <[EMAIL PROTECTED]> wrote: > >> I think it should be left to the developer to decide whether she or he >> lets the two states get out of sync or not, but I am updating the table >> cell in any case. >> >> My use case is the following: I have a r

Re: [qooxdoo-devel] Patch to qx.ui.table.model.Remote: setValue() method implemented

2007-10-10 Thread Derrell Lipman
On 10/10/07, bibliograph <[EMAIL PROTECTED]> wrote: > I think it should be left to the developer to decide whether she or he > lets the two states get out of sync or not, but I am updating the table > cell in any case. > > My use case is the following: I have a remote table with records. When I > c

Re: [qooxdoo-devel] Patch to qx.ui.table.model.Remote: setValue() method implemented

2007-10-10 Thread bibliograph
Derrell Lipman schrieb: > I'm going to let Til comment, as I'm no expert on the remote table > model. I do have some minor concerns, though. With the remote table > model, the data is primarily being maintained at the server (or at > least at the "remote" location whatever that happens to be). U

Re: [qooxdoo-devel] qx.ui.table.cellrenderer.Dynamic

2007-10-10 Thread bibliograph
Tobias Koller (GERMO GmbH) schrieb: Hi,   i’m playing around with the dynamic cellrenderer. It works for the usual cellrenderer (default, password,…) but there is a problem when I want to use a checkbox-renderer inside the dynamic-cellrenderer.   Usually I handle c

Re: [qooxdoo-devel] Patch to qx.ui.table.model.Remote: setValue() method implemented

2007-10-10 Thread Derrell Lipman
On 10/10/07, Fabian Jakobs <[EMAIL PROTECTED]> wrote: > bibliograph schrieb: > > Hello, > > > > qx.ui.table.model.Remote currently does not implement the setValue() > > method required by interface qx.ui.table.model.Abstract. This patch adds > > this method. I tested it with legacy 0.7 and it seems

Re: [qooxdoo-devel] Patch to qx.ui.table.model.Remote: setValue() method implemented

2007-10-10 Thread Fabian Jakobs
bibliograph schrieb: > Hello, > > qx.ui.table.model.Remote currently does not implement the setValue() > method required by interface qx.ui.table.model.Abstract. This patch adds > this method. I tested it with legacy 0.7 and it seems to work fine. This > is especially useful if you locally change t

[qooxdoo-devel] Modify Build Process for Loading screen

2007-10-10 Thread qooxdoo
Hi, I posted a couple of weeks ago about how to create a loading screen. Not a "loading data" screen, but some visual indication of progress when qooxdoo first loads it's classes. Christian advised me to modify the build process and it worked!! Thanks! I'm thinking of making this generic and p

Re: [qooxdoo-devel] Smalles possible Qooxdoo

2007-10-10 Thread Fabian Jakobs
Dioc schrieb: > Hello Leander, > > As I know GUI part of qooxdoo can be excluded from a build. There is the > corresponding makefile option: APPLICATION_ENABLE_GUI. By default it has > "true" value. I suppose if you set this option to "false" in your makefile, > you will get what you want. > By the

Re: [qooxdoo-devel] Programatically firing events

2007-10-10 Thread Derrell Lipman
On 10/10/07, Phaneesh N <[EMAIL PROTECTED]> wrote: > > Hi Fabian, > > I tried the following in Tree_1 example: > > var arrData = []; > arrData.push(te2_8); > var event = new qx.event.type.DataEvent("changeSelection", arrData); > te2_8.dispatchEvent(event, true); > >

Re: [qooxdoo-devel] Smalles possible Qooxdoo

2007-10-10 Thread dperez
For further grained control, I would use directly the generator.py and its command line switches, like --exclude-without-dependencies. Leander Hanwald wrote: > > Thank you, that helps :) > > Only one thing is in unclear for me, possible that I missed it: I > stripped down qooxdoo do an extrem

[qooxdoo-devel] qx.ui.table.cellrenderer.Dynamic

2007-10-10 Thread Tobias Koller (GERMO GmbH)
Hi, i'm playing around with the dynamic cellrenderer. It works for the usual cellrenderer (default, password,...) but there is a problem when I want to use a checkbox-renderer inside the dynamic-cellrenderer. Usually I handle checkboxes in a table like this: if (this.getTableColumnM

Re: [qooxdoo-devel] Drag & Drop with feedback widget _below_ cursor not working

2007-10-10 Thread [EMAIL PROTECTED]
I thought about what I just wrote and did modify the DragAndDropHandler. I filed a bug and addded my solution under http://bugzilla.qooxdoo.org/show_bug.cgi?id=688 Fabio - This SF.net email is sponsored by: Splunk Inc. Still

Re: [qooxdoo-devel] Smalles possible Qooxdoo

2007-10-10 Thread Leander Hanwald
Thank you, that helps :) Only one thing is in unclear for me, possible that I missed it: I stripped down qooxdoo do an extrem small version with ONLY the basic classes by the parameters written there (only with parameters from the makefile, no direct calls to the generators). Now also the ajax com

[qooxdoo-devel] Drag & Drop with feedback widget _below_ cursor not working

2007-10-10 Thread [EMAIL PROTECTED]
Hi there, I am trying to implement a windows-like drag and drop of icons on a Desktop. In windows, when you drag an icon, the icon is placed right below the cursor and stays at that position it has been initially click on. When I try to implement this in qooxdoo, the feedback widget receives all

Re: [qooxdoo-devel] Smalles possible Qooxdoo

2007-10-10 Thread Dioc
Hello Leander, As I know GUI part of qooxdoo can be excluded from a build. There is the corresponding makefile option: APPLICATION_ENABLE_GUI. By default it has "true" value. I suppose if you set this option to "false" in your makefile, you will get what you want. By the way, you can find some us

Re: [qooxdoo-devel] How to override an auto-generated getter/setter?

2007-10-10 Thread [EMAIL PROTECTED]
Hi Derrell, class extension can both be generalization and specialization. In my case I want to perform a specialization, so I guess I know what I am doing... Coming from the Java world I still have the "super" keyword in my mind ;) Thanks for your explanation, I will figure out a save solution w

[qooxdoo-devel] Smalles possible Qooxdoo

2007-10-10 Thread Leander Hanwald
Hi all, I have a more or less simple question: I need only the non-gui part of qooxdoo for an project, is there a way to drop all components under qx.ui.* at once at buildtime? Is that possible, or are there dependencies between non-gui comps like the transport/rpc comps and the ui comps? Situati

Re: [qooxdoo-devel] Programatically firing events

2007-10-10 Thread Phaneesh N
Hi Fabian, I tried the following in Tree_1 example: var arrData = []; arrData.push(te2_8); var event = new qx.event.type.DataEvent("changeSelection", arrData); te2_8.dispatchEvent(event, true); It did not fire the event. Am I doing some mistake here? I also tried