Re: [qooxdoo-devel] Is qooxdoo compatible with Aptana?

2007-03-26 Thread dperez
Aptana should work with Qooxdoo, although I think there is no special support for it. I'm using now JSEclipse, it is also free (but not open source) and Eclipse based. What I like of JSEclipse is that it highlight all uses of the word under the cursor. Search the archives for further info. Andre

Re: [qooxdoo-devel] Level of expertise to use Qooxdoo

2007-03-26 Thread Matthias Reuter
> Is there a good book on javascript? Should I use Aptana? There are several good websites and books on Javascript. First there is http://www.howtocreate.co.uk/tutorials/javascript/, a tutorial for beginners. Then there is http://www.quirksmode.org/resources.html, with some advanced topics. The a

Re: [qooxdoo-devel] ComboBoxEx onchange listener

2007-03-26 Thread Fabian Jakobs
Hi Alexander, > Hi, > > thanks a lot. I don´t find that listener in the API. Do you know why? One > reasen: I can´t read the API correctly the other is my API is an old one or > sething else. > > I have a lot of Problems with the documentation of the qooxdoo Framework. I > read a lot in the java d

Re: [qooxdoo-devel] JSEclipse and the new OO syntax in qooxdoo 0.7: first contact with adobe!

2007-03-26 Thread Fabian Jakobs
Dietrich Streifert schrieb: > New Answer to this topic from Adobe JSEcplipse Team. > > Sebastian, Andreas: it would be nice if you can take a few minutes and > can give the Adobe guys some information about the stability of the > new OO interface in 0.7 and maybe about soem guess when qooxdoo 0.7

Re: [qooxdoo-devel] Level of expertise to use Qooxdoo

2007-03-26 Thread Jim Hunter
Andrew, I can answer a few of your questions. There is an IDE on the horizon (next week or two) that will allow you to visually develop your qooxdoo applications, it's called CodeGear (formerly Borland) Delphi for PHP. Don't let the word Delphi fool you, there is no pascal involved, it is 100%

[qooxdoo-devel] Level of expertise to use Qooxdoo

2007-03-26 Thread Andrew S Katz (tb)
I spent the day looking over your site, downloading and building Qooxdoo, trying out the hello world, and looking at the API and your documentation. I am left with the impression, that you assume that someone with javascript programming experience is already reading this. Let me explain where I

[qooxdoo-devel] Is qooxdoo compatible with Aptana?

2007-03-26 Thread Andrew S Katz (tb)
In case you do not know what Aptana is, here is the website: http://www.aptana.com/ I am confused about AJAX development. What are the best free tools out there? And how do they fit together? - Take Surveys. Earn Cash. Inf

Re: [qooxdoo-devel] Tango Icon Gallery

2007-03-26 Thread Naftali van der Loon
Maybe you could give some feedback about your success? yes please, maybe a download? 2007/3/26, Andreas Ecker <[EMAIL PROTECTED]>: Hi Frederic! > I've just discovered a new icon collection called Tango using standard > naming spec : > http://tango.freedesktop.org/Tango_Icon_Gallery > Why

Re: [qooxdoo-devel] Table: how to change the visibility status of a table column

2007-03-26 Thread dperez
It looks like a bug. It is an exception (it also happens if I toggle the visibility by clicking the button at the righto of the headers. ERROR: qx.ui.table.ResizeTableColumnModel[156]: Could not dispatch event of type "visibilityChanged": TypeError - this._columnDataArr[col] has no properties.

Re: [qooxdoo-devel] ComboBoxEx onchange listener

2007-03-26 Thread Tobias Koller (GERMO GmbH)
Hi, 1.read this... http://qooxdoo.org/documentation/user_manual/available_events 2. the getter and setter -Functions are not explicitly listed. Tobias -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Alexander Weisser Gesendet: Montag, 26. Mär

Re: [qooxdoo-devel] ComboBoxEx onchange listener

2007-03-26 Thread Alexander Weisser
Hi, thanks a lot. I don´t find that listener in the API. Do you know why? One reasen: I can´t read the API correctly the other is my API is an old one or sething else. I have a lot of Problems with the documentation of the qooxdoo Framework. I read a lot in the java documentation. There i have

[qooxdoo-devel] Table: how to change the visibility status of a table column

2007-03-26 Thread dperez
Dear table gurus, In the changeChecked event handler of a CheckBox I have this code to toggle the visibility status of a table: myCheckBox.addEventListener('changeChecked', function(ev) { table.getTableColumnModel().setColumnVisible(1, ev.getData()); }); This code works ok. The column is sho

Re: [qooxdoo-devel] ComboBoxEx onchange listener

2007-03-26 Thread dperez
Hi Alexander, This is how it can be done: combo.addEventListener('changeValue', function(ev) { . }, this); Qooxdoo is so powerful, that any property can have change listeners. E.g. you could also have (when the enabled state changes): combo.addEventLis

Re: [qooxdoo-devel] JSEclipse and the new OO syntax in qooxdoo 0.7: first contact with adobe!

2007-03-26 Thread Rusi Filipov
>> It is in our plans to semantically supporting major frameworks like >> qooxdoo. That would be great! I am currently using JSEclipse and I think it is good. Supporting qooxdoo would make the IDE much more powerful than now :). Bye, Rusi --

Re: [qooxdoo-devel] Tango Icon Gallery

2007-03-26 Thread Andreas Ecker
Hi Frederic! > I've just discovered a new icon collection called Tango using standard > naming spec : > http://tango.freedesktop.org/Tango_Icon_Gallery > Why not add this new icon collection to qooxdoo ? The Tango Icon Gallery is kinda reference implementation of the freedesktop Icon naming Speci

Re: [qooxdoo-devel] Possible bug in make build?

2007-03-26 Thread Simon Bull
Hi Fabian, Great work! I'm glad I could help out with a bug report :) Simon - Original Message From: Fabian Jakobs <[EMAIL PROTECTED]> To: qooxdoo Development Sent: Monday, 26 March, 2007 7:00:12 PM Subject: Re: [qooxdoo-devel] Possible bug in make build? Hello Simon, with the hel

[qooxdoo-devel] ComboBoxEx onchange listener

2007-03-26 Thread Alexander Weisser
Hi, is in the ComboBoxEx an onChange listener or something like this: I want to get an action if the value in the ComboBoxEx - field is changed. If the value is changed by click it with the mouse or change it in the new popup window which comes up when you doubleclick the ComboBoxEx field. I tr

Re: [qooxdoo-devel] Possible bug in make build?

2007-03-26 Thread Fabian Jakobs
Hello Simon, with the help of your code I was able to reproduce and solve this problem. There was really a nasty bug in the variable optimizer. This is the reduced problem: function() { // this works this.foo.b(b); this.b(b); this.a().b // this doesn't this.a().b

[qooxdoo-devel] xml -> xslt -> javascript

2007-03-26 Thread Christian Boulanger
Hello! As I have mentioned before, Siarhei Barysiuk and I have been working on XSLT stylesheets which transform xml templates into qooxdoo javascript. This is a feature that is still missing from qooxdoo and would be very useful (The exisiting javascript Builder is ok, but far too slow, and no

Re: [qooxdoo-devel] My first encounter with the trunk

2007-03-26 Thread Christian Boulanger
I'll try the debug option. Won't get to do it before next weekend, though... Maybe in the meantime Sebastian et al. have some ideas... Thanks for all your help, Christian [EMAIL PROTECTED] schrieb: > Christian Boulanger <[EMAIL PROTECTED]> writes: > > >> Derrel: >> >> thank you for this, th