Re: [qooxdoo-devel] Aptana editor

2006-10-03 Thread dperez
Hi, Currently it isn't done. Ask for it in http://www.aptana.com/forums/viewtopic.php?p=1787 The more of us ask, the more priority they will give to this issue. frederic wrote: > > Hi, > Is there exist a way to add autocompletion of Qooxdoo API (package methods > and properties) in Aptana ?

Re: [qooxdoo-devel] Interface building preference

2006-10-03 Thread dperez
Hi, My current approach is: - I define my forms in a propiertary XML format. - Then I convert this XML format to JSON format - A fixed *.js builds with Qooxdoo the form My previous approach was: - I define my forms in a propiertary XML format. - A XSLT sheet converts this in HTML - A fixed *.j

Re: [qooxdoo-devel] Aptana editor

2006-10-03 Thread frederic
Hi, Is there exist a way to add autocompletion of Qooxdoo API (package methods and properties) in Aptana ? cheers. frederic mikecrowe wrote: > > David, wow, I thought I'd checked out every editor. This looks sweet. > I'm downloading it now. > > > dperez wrote: >> >> Hi, >> >> I've ju

[qooxdoo-devel] Interface building preference

2006-10-03 Thread Chris Ricks
Hi all, I have a general question for the list. At present, I'm working on a server-side Java toolkit that will use Qooxdoo as one of it's output options. I know that many people on this list are using something similar in their work. I've also seen plenty of instances of people building their

Re: [qooxdoo-devel] Aptana editor

2006-10-03 Thread mikecrowe
David, wow, I thought I'd checked out every editor. This looks sweet. I'm downloading it now. dperez wrote: > > Hi, > > I've just asked qooxdoo support for the wonderful Eclipse based and open > source javascript editor called Aptana. > http://www.aptana.com. > > They currently support Do

[qooxdoo-devel] unexpected focus events on ComboBox in Firefox 1.5

2006-10-03 Thread Erich Konicek
In Firefox 1.5 (not in IE 6.0) the ComboBox widget (trunc, lastest revision) fires "focus" events without getting the focus in real. I have attached a small sample, based on examples/ComboBox_1.html. Click in the text field then click in the address bar (the focus has to get outside the document

Re: [qooxdoo-devel] Aptana editor

2006-10-03 Thread dperez
Hi all, I wonder which tools do the qooxdoo community use for Javascript development. I currently use: * Eclipse 3.2 + Aptana (or JSEclipse) for editing purposes. * Firefox 1.5 + Firebug 0.4 for debugging purposes. This is the main development platform * IE6 + Visual Studio, only for testing I

Re: [qooxdoo-devel] qx.ui.table.Table events issues

2006-10-03 Thread dperez
Hi, I use this simple technique: var ignoreEvent = 0; function myMethodWithoutEvent() { ignoreEvent++; try { // set current row and other things we don't want to throw the trigger. } finally { ignoreEvent--; } } function mySelectRowEvent(event) { if (!ignoreEven

[qooxdoo-devel] Aptana editor

2006-10-03 Thread dperez
Hi, I've just asked qooxdoo support for the wonderful Eclipse based and open source javascript editor called Aptana. http://www.aptana.com. They currently support Dojo, and a lot of other javascript frameworks. http://www.aptana.com/trac/ticket/1303 Regards, David -- View this message in cont

[qooxdoo-devel] qx.ui.table.Table events issues

2006-10-03 Thread Jim Hunter
Excellent suggestion. I will give that a try tomorrow. Thanks, Jim - Hi Jim, I had a similar problem a while ago -- where a real mouse event would trigger a listener, which would then update a widget that threw the same event, and get lost in a loop. I am