Re: [qooxdoo-devel] More Object disposal (sorry!)

2007-06-12 Thread Dietrich Streifert
Shouldn't this be solved in general by modifying the _disposeObjects method? The disposal of an object makes a reference from its parent useless. So shouldn't some code like: parent = objToDispose.getParent(); if(parent) parent.remove(objToDispose); be done for every parameter of _dispos

Re: [qooxdoo-devel] Error in online demos

2007-06-12 Thread Hugh Gibson
> When I open up http://demo.qooxdoo.org/current/demobrowser/ I get > the > popup trace window in IE7. It should be turned off as there are log > windows for each of the examples. This is still happening. Hugh - This SF.net

[qooxdoo-devel] OnClose, Minimise Internal Window Component

2007-06-12 Thread FrozenDice
Is there a way to assign an event to the minimise and close buttons on a Window component? - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML.

Re: [qooxdoo-devel] liveUpdate behaviour

2007-06-12 Thread Hugh Gibson
> > Any comments about the problem of the "input" event listener > hiding the > > "changeValue" event, and the listener on "changeText"? > > What exactly do you mean? Did you not get the other email I sent in this thread? I've copied the relevant bit below (the demo is http://demo.qooxdoo.org/0.

[qooxdoo-devel] More Object disposal (sorry!)

2007-06-12 Thread Nick Glencross
Hi! I mentioned in a posting on the 8th that I was seeing a problem with tabbing after the DateChooserButton is destructed, and posted some sample code. I've further investigated this and found the problem lies in DateChooserButton's destruction of the popup window. Basically in its destructor i

Re: [qooxdoo-devel] JSEclipse templates

2007-06-12 Thread Christian Boulanger
Hello, any news on JSEclipse support for the new Class syntax? It would be great to have autocompletion etc. Thanks, Christian dperez wrote: > Hi, > > I'm not going to post to this forum only for complaining about errors. > <^O^> > > Here is some tip, I find useful: > > I use JSEclipse for edi

Re: [qooxdoo-devel] JSEclipse templates

2007-06-12 Thread Joe Hudson
That's a great tip. Thanks Joe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of dperez Sent: Tuesday, June 12, 2007 12:00 PM To: qooxdoo-devel@lists.sourceforge.net Subject: Re: [qooxdoo-devel] JSEclipse templates For avoiding it getting lost, I created

Re: [qooxdoo-devel] Error: configuration key "extend" is not allowed! [v0.7]

2007-06-12 Thread Derrell Lipman
On 6/12/07, C.Bieser <[EMAIL PROTECTED]> wrote: > > After changing Remote.js (qx.ui.table.model.Remote) from > --- > qx.Class.define("qx.ui.table.model.Remote", > { > extend : qx.ui.table.model.Abstract, > [...] > }); > --- > to > --- > qx.Class.define("qx.ui.table.model.Remote", > {

Re: [qooxdoo-devel] Error: configuration key "extend" is not allowed! [v0.7]

2007-06-12 Thread Fabian Jakobs
C.Bieser schrieb: > After changing Remote.js (qx.ui.table.model.Remote) from > --- > qx.Class.define("qx.ui.table.model.Remote", > { > extend : qx.ui.table.model.Abstract, > [...] > }); > --- > to > --- > qx.Class.define("qx.ui.table.model.Remote", > { > type : "abstract", > exten

Re: [qooxdoo-devel] Error: configuration key "extend" is not allowed! [v0.7]

2007-06-12 Thread C.Bieser
After changing Remote.js (qx.ui.table.model.Remote) from --- qx.Class.define("qx.ui.table.model.Remote", { extend : qx.ui.table.model.Abstract, [...] }); --- to --- qx.Class.define("qx.ui.table.model.Remote", { type : "abstract", extend : qx.ui.table.model.Abstract, [...] }); ---

Re: [qooxdoo-devel] Error: configuration key "extend" is not allowed! [v0.7]

2007-06-12 Thread Sebastian Werner
It seems that the given class is undefined. Please be sure that the class (Remote) is included before your custom class. Sebastian C.Bieser schrieb: > I've just migrated on old File to v0.7 and now I get the following Error. I > han't fount anything in the Archiv the helps me... > > Do You hav

Re: [qooxdoo-devel] liveUpdate behaviour

2007-06-12 Thread Sebastian Werner
Hugh Gibson schrieb: > Sebastian, > >> After you have send me your key press order I >> was able to reproduce it here. >> >> I have found and fixed the bug. Revision 8538. > > Any comments about the problem of the "input" event listener hiding the > "changeValue" event, and the listener on "chan

Re: [qooxdoo-devel] JSEclipse templates

2007-06-12 Thread dperez
For avoiding it getting lost, I created a wiki page: http://qooxdoo.org/documentation/0.7/jseclipse_templates Your contributions and ideas are welcome! dperez wrote: > > Here is some tip, I find useful: > > I use JSEclipse for editing, and here are some sample templates (Window | > Preferenc

[qooxdoo-devel] JSEclipse templates

2007-06-12 Thread dperez
Hi, I'm not going to post to this forum only for complaining about errors. <^O^> Here is some tip, I find useful: I use JSEclipse for editing, and here are some sample templates (Window | Preferences | JSEclipse | Templates): For creating a class: qx.Class.define('${Class}', { extend

[qooxdoo-devel] Error: configuration key "extend" is not allowed! [v0.7]

2007-06-12 Thread C.Bieser
I've just migrated on old File to v0.7 and now I get the following Error. I han't fount anything in the Archiv the helps me... Do You have an Idea? Thanks, Christian - The configuration key "extend" in class "pim.remoteTableModel" is not allowed! qx.Class.define("pim.remoteTableModel", {

Re: [qooxdoo-devel] liveUpdate behaviour

2007-06-12 Thread Hugh Gibson
Sebastian, > After you have send me your key press order I > was able to reproduce it here. > > I have found and fixed the bug. Revision 8538. Any comments about the problem of the "input" event listener hiding the "changeValue" event, and the listener on "changeText"? Hugh --

Re: [qooxdoo-devel] Make build does not copy icon resource to the build path in 0.7

2007-06-12 Thread Dietrich Streifert
Done: http://bugzilla.qooxdoo.org/show_bug.cgi?id=485 Sebastian Werner schrieb: OK, this should not be needed. Can you please open a bug report and enter all these details of this thread. Thank you. Sebastian Dietrich Streifert schrieb: Found the problem: because I created my own icon

Re: [qooxdoo-devel] liveUpdate behaviour

2007-06-12 Thread Sebastian Werner
Hi Nick, wow this really was a bug. After you have send me your key press order I was able to reproduce it here. I have found and fixed the bug. Revision 8538. Thank you again for your stying power ;) Sebastian Nick Glencross schrieb: > Sebastian, > > thanks for your time on this. > > On 1

Re: [qooxdoo-devel] Make build does not copy icon resource to the build path in 0.7

2007-06-12 Thread Sebastian Werner
OK, this should not be needed. Can you please open a bug report and enter all these details of this thread. Thank you. Sebastian Dietrich Streifert schrieb: > Found the problem: > > because I created my own icon theme which has a separate namespace > ("visionet" not "qx") I had to change the

Re: [qooxdoo-devel] Make build does not copy icon resource to the build path in 0.7

2007-06-12 Thread Dietrich Streifert
Found the problem: because I created my own icon theme which has a separate namespace ("visionet" not "qx") I had to change the #embed helper statemens in the js files: #embed(visionet.icontheme/16/actions/documentinfo.png) #embed(visionet.icontheme/16/actions/stop.png) #embed(visionet.iconth

[qooxdoo-devel] this for the Class within EventListerner-Function

2007-06-12 Thread C.Bieser
Hello, i know that the third parameter for addEventListener is the Object that represents this within the surrounding Function. In my case, the eventListener "complete" for AJAX is calling a Function to generate children in the Tree. For this I have a Function "requestTreeChildren". Within "requ

Re: [qooxdoo-devel] Events Problem in Table-Click (0.6.6)

2007-06-12 Thread westor
OK, I solved it: I set tableModel.setColumnEditable(columnindex, false) instead of setting it to true. It's not necessary to set this value to true, because I'm changing the values via program code. westor wrote: > > Hi list, > > one more try to get a solution for my problem: > > I have a ta

Re: [qooxdoo-devel] liveUpdate behaviour

2007-06-12 Thread Nick Glencross
Sebastian, thanks for your time on this. On 12/06/07, Sebastian Werner <[EMAIL PROTECTED]> wrote: > This was not the text which the widget got on focus. This was the text > configured before the event listener was attached. The "changeValue" > fires, even when using the setters. Just put them ab

Re: [qooxdoo-devel] Applying themes

2007-06-12 Thread dperez
Thanks, it works ok.:-) Created this doc section: http://qooxdoo.org/documentation/0.7/theme_support#how_to_apply_a_theme Sebastian Werner wrote: > > The best way is to use the Makefile variables e.g. > > APPLICATION_THEME_APPEARANCE > > Simply set it to the full classname. > > This is t

Re: [qooxdoo-devel] How to catch StateChanges?

2007-06-12 Thread Sebastian Werner
Florian, no, this feature is not implemented. Sebastian Florian Probst schrieb: > Hi, > > I'm wondering if it's possible state-changes to an Object. Is there an > event thrown when a state has changed? In my case I would be nice to > have this on a button losing his state "abandoned". > > t

[qooxdoo-devel] How to catch StateChanges?

2007-06-12 Thread Florian Probst
Hi, I'm wondering if it's possible state-changes to an Object. Is there an event thrown when a state has changed? In my case I would be nice to have this on a button losing his state "abandoned". thanks in advance florian --

Re: [qooxdoo-devel] Applying themes

2007-06-12 Thread Sebastian Werner
The best way is to use the Makefile variables e.g. APPLICATION_THEME_APPEARANCE Simply set it to the full classname. This is the same for the setter. The first Parameter needs to be a reference to the theme. (BTW: In your case the setter should print out an error that the incoming value is inv

[qooxdoo-devel] Applying themes

2007-06-12 Thread dperez
Hi, I'm trying to make custom themes. But don't know how to apply them. I've tried e.g.: qx.theme.manager.Appearance.getInstance().setAppearanceTheme('Ext'); but it fails. :-( Thanks for any hint. Regards, David -- View this message in context: http://www.nabble.com/Applying-themes-tf39069

Re: [qooxdoo-devel] Make build does not copy icon resource to the build path in 0.7

2007-06-12 Thread Dietrich Streifert
The paths are obviously set correct because setting the Makefile variable APPLICATION_RESOURCE_FILTER = true copies the resource path to the build path. Of course this is copying everything in the resource path and not only those defined by the #embed statemens in the class file: #embed(qx.ico

Re: [qooxdoo-devel] liveUpdate behaviour

2007-06-12 Thread Sebastian Werner
Nick Glencross schrieb: > Sebastian, > > Sebastian Werner wrote: >> Nick Glencross schrieb: >>> Hi all! >>> >>> I've been using the changeValue event with liveUpdate to control the >>> Enabled property of two mutually exclusive fields. Works well, but I >>> found that when I removed all the text i

Re: [qooxdoo-devel] liveUpdate behaviour

2007-06-12 Thread Hugh Gibson
> I can't currently see a reason for the current behaviour, and think > it will bite quite often. For users that really want this, they > should be able to implement it in the application layer. I agree totally with this. Every change should be visible, though it seems that adding an "input" list

[qooxdoo-devel] Events Problem in Table-Click (0.6.6)

2007-06-12 Thread westor
Hi list, one more try to get a solution for my problem: I have a table, and I want to change the field-content when I klick (preferring single-click) in the cell. table.getPaneScroller(0).addEventListener("click", function(e) { // eg. editing a boolean if(this.getTableColumnModel ().getData

Re: [qooxdoo-devel] Error in online demos

2007-06-12 Thread Hugh Gibson
> I think no javascript debugger works for IE7. It's fine here. When I get a Javascript error in IE7 it asks me whether I want to debug with either "Microsoft Script Editor 6.0" or "Visual Studio .NET 2003". The latter is more reliable and gives me full debugging, visibility of variables etc. Not

Re: [qooxdoo-devel] this.self(arguments)

2007-06-12 Thread Hugh Gibson
> Yes, you can see static methods as normal functions which happen to > be placed inside a namespace. In qooxdoo 0.6 and most other > frameworks static methods are always called using their fully > qualified name (namespace+function name). this.self in qooxdoo is a > convenience function to get

Re: [qooxdoo-devel] Error in online demos

2007-06-12 Thread Hugh Gibson
When I open up http://demo.qooxdoo.org/current/demobrowser/ I get the popup trace window in IE7. It should be turned off as there are log windows for each of the examples. > Fixed online. The "devel" version is now working, too. > > Sebastian > > > Sebastian Werner schrieb: > > Thanks Hugh, > >

Re: [qooxdoo-devel] NumberFormat bug

2007-06-12 Thread dperez
Thanks Fabian. Solved: qx/application/framework/source/class/qx/locale/data was missing for that locale. Closed the bug. Fabian Jakobs-2 wrote: > > Hi David, > > I think you have outdated localization data files. Could you please try > the following steps: > > 1. do a "make distclean" in you

Re: [qooxdoo-devel] Canvaslayout align

2007-06-12 Thread Alex Back
Hi Tobias, Tobias Koller (GERMO GmbH) wrote: > Hi, > I want to center a child of a canvasLayout and don't know how to do it. The CanvasLayout manager has not possibility to align his children. All child widgets within a CanvasLayout have to have explicit dimensions and locations. Take a look at

Re: [qooxdoo-devel] liveUpdate behaviour

2007-06-12 Thread Nick Glencross
Sebastian, Sebastian Werner wrote: > Nick Glencross schrieb: >> Hi all! >> >> I've been using the changeValue event with liveUpdate to control the >> Enabled property of two mutually exclusive fields. Works well, but I >> found that when I removed all the text in a field the event doesn't >> trigg

[qooxdoo-devel] Canvaslayout align

2007-06-12 Thread Tobias Koller (GERMO GmbH)
Hi, I want to center a child of a canvasLayout and don't know how to do it. I tried this: var main = new qx.ui.layout.CanvasLayout; main.set({ width : "100%", height : "100%" }); var

Re: [qooxdoo-devel] 0.6.6: maximum number of characters in TextArea

2007-06-12 Thread Daniel Haferkorn
Hello, FrozenDice wrote: > Well remember, if the user is submitting data(which they probably are) > to be processed by something on the server then it's not a good idea > to rely on server side prevention. What I'm saying is if you're using > it in an sql query or something then the user can easi

[qooxdoo-devel] Make build does not copy icon resource to the build path in 0.7

2007-06-12 Thread Dietrich Streifert
Hallo List, I've managed migrating my application from 0.6.6 to 0.7 with one exception: The icon resources are not copied over to the build path if I do a make build This worked in 0.6.6. Do I have to call make with a special target or do I have to set some variables in the Makefile? Wha

Re: [qooxdoo-devel] liveUpdate behaviour

2007-06-12 Thread Sebastian Werner
Hi Nick, Nick Glencross schrieb: > Hi all! > > I've been using the changeValue event with liveUpdate to control the > Enabled property of two mutually exclusive fields. Works well, but I > found that when I removed all the text in a field the event doesn't > trigger. this seems to work well for

Re: [qooxdoo-devel] Error in online demos

2007-06-12 Thread Sebastian Werner
Fixed online. The "devel" version is now working, too. Sebastian Sebastian Werner schrieb: > Thanks Hugh, > > I will take a look. I have changed the "current" version to 0.7 final. > And made the "devel" the new 0.7.1-pre (SVN) version. > > Sebastian > > > Hugh Gibson schrieb: >> Just runni

Re: [qooxdoo-devel] treefullcontrol is missing in current trunk

2007-06-12 Thread Fabian Jakobs
Dietrich Streifert schrieb: > Hi Tobias, > > from the qooxdoo-commit mailing list: > > Revision: 8515 > http://svn.sourceforge.net/qooxdoo/?rev=8515&view=rev > Author: fjakobs > Date: 2007-06-11 03:30:28 -0700 (Mon, 11 Jun 2007) > > Log Message: > --- > Merge tree and treefu

Re: [qooxdoo-devel] Error in online demos

2007-06-12 Thread Fabian Jakobs
dperez schrieb: > Hi Hugh, > > I think no javascript debugger works for IE7. > It's a shame for M$. > > If I have to debug IE7 I use "Microsoft Visual Web Developer 2005 Express Edition". This works pretty good. I think in one of the IE blogs was a tutorial how to use it. I will have to dig fo

Re: [qooxdoo-devel] NumberFormat bug

2007-06-12 Thread Fabian Jakobs
dperez schrieb: > Hi > > I consider this a bug: > qx.util.format.NumberFormat.getInstance().format(15.5) == > '15cldr_number_decimal_separator5' > > Posted bug: http://bugzilla.qooxdoo.org/show_bug.cgi?id=478 > > Regards, > David > Hi David, I think you have outdated localization data files. Co

Re: [qooxdoo-devel] this.self(arguments)

2007-06-12 Thread Fabian Jakobs
Hugh Gibson schrieb: >> Yes, this is normal. >> >> Static members are not inherited. You need to use a additional >> ".superclass" then. >> > > Was this a conscious design decision? It seems to me to go against the OO > grain to have to work out which superclass defines the static that you >

Re: [qooxdoo-devel] Error in online demos

2007-06-12 Thread Sebastian Werner
Thanks Hugh, I will take a look. I have changed the "current" version to 0.7 final. And made the "devel" the new 0.7.1-pre (SVN) version. Sebastian Hugh Gibson schrieb: > Just running the online demos in IE7 with script debugging turned on. > Version says: 0.7.1 pre (r8483). > > Every demo g

Re: [qooxdoo-devel] "Do you want to delete all your personal data" still in showcase

2007-06-12 Thread Sebastian Werner
Done in SVN. Sebastian Hugh Gibson schrieb: > I see that the Window demo now asks you "Do you want to fly to Rio?". > However, the showcase still says "Do you want to delete all your personal > data?". Maybe it would be nicer to change the latter to be consistent. > > Hugh > >

Re: [qooxdoo-devel] this.self(arguments)

2007-06-12 Thread dperez
I also think so. Hugh Gibson wrote: > >> Yes, this is normal. >> >> Static members are not inherited. You need to use a additional >> ".superclass" then. > > Was this a conscious design decision? It seems to me to go against the OO > grain to have to work out which superclass defines the sta