Re: [qooxdoo-devel] qooxdoo and gmaps

2007-03-02 Thread Danny Adair
Hi Laurent, We've done some integration of http://zoomin.co.nz with qooxdoo, a New Zealand -specific mapping solution with a similar API (much slimmer) like Google Maps. We use that for visualizing GPS data. It's part of a bigger project which will become free software so drop me a line off-list

Re: [qooxdoo-devel] new builds

2007-03-02 Thread Jim Hunter
Here is the contents of my MAKE file: QOOXDOO_PATH = ../../.. QOOXDOO_URI = ../../../.. APPLICATION_NAMESPACE = swep APPLICATION_MAKE_TITLE = Swep APPLICATION_API_TITLE = Swep APPLICATION_FILES = index.html APPLICATION_RESOURCE_FILTER = true APPLICATION_COMPLETE_SOURCE = true APPLICATION_LINEBREA

[qooxdoo-devel] qooxdoo and gmaps

2007-03-02 Thread laurent rahuel
Hi, Playing for a while (but not enough) with qooxdoo, I'm really impressed by this framework. But I still have a question for which I can't get the answer by myself. For a project I need to manage geographical data. I need to be able to set latitude and longitude for some places. I already hav

Re: [qooxdoo-devel] Qooxdoo Data Manager Extensions

2007-03-02 Thread Christian Boulanger
Hi, I stopped working on the stuff because qooxdoo was such a moving target that I could never keep up with the change of the API. Maybe I will return to it once we get closer to 1.0. I still think it is a good idea to provide a uniform data binding interface to all widgets. Cheers, Christian

Re: [qooxdoo-devel] strange message from migrate

2007-03-02 Thread Jim Hunter
From what I have seen in my migrations, it usually means that there is a case mis-match between the class name and the filename. Make sure that they both match exactly. Also, you can't declare a new class in a file that was used to declare another class. Each class needs to be in it's own file an

Re: [qooxdoo-devel] Hints on *Lightweight* qooxdoo...

2007-03-02 Thread Chris Banford
Ok -- found the answer to my own question on the qooxdoo Roadmap! Sorry for the wasted bandwidth!!! http://qooxdoo.org/about/roadmap Good luck with the new layout engine guys -- sounds like quite the project! (I have faith :-) ) Cheers, -Chris > Hi qooxdoo gurus, > > I'm finding myself coming

Re: [qooxdoo-devel] Problem with qx.util.GuiBuilder

2007-03-02 Thread Andreas Ecker
Hi Fabio! Fabio Mino wrote: > Ok, i'll find it. > Talking about 0.6.5 > The problem is that in the GuiBuilder.js (line 376) it needs > > this.registerPropertyEditor('qx.ui.toolbar.MenuButton', 'menu', > referencePropertyEditor); > > because this property wasn't defined. > Where can i signal t

[qooxdoo-devel] Table columns auto resize

2007-03-02 Thread Oliver Koch
Hallo, is it possible to automatically resize the columns of a table with qooxdoo? Greetz, Oliver Koch - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to

Re: [qooxdoo-devel] Problem with qx.util.GuiBuilder

2007-03-02 Thread Fabio Mino
Ok, i'll find it. Talking about 0.6.5 The problem is that in the GuiBuilder.js (line 376) it needs this.registerPropertyEditor('qx.ui.toolbar.MenuButton', 'menu', referencePropertyEditor); because this property wasn't defined. Where can i signal things like this at the develer team? In the qoox

[qooxdoo-devel] strange message from migrate

2007-03-02 Thread Derrell . Lipman
What does this message mean? - Could not extract ID from file: source/class/qx/ui/table/ConditionalDataCellRenderer.js. Fallback to path qx.ui.table.ConditionalDataCellRenderer! Derrell - Take Surveys. Earn Cash. Influ

Re: [qooxdoo-devel] Request as POST ?

2007-03-02 Thread Derrell . Lipman
Cornelius Weiss <[EMAIL PROTECTED]> writes: > this is my code: > btn_save.addEventListener("click", function(e) { > var req = new > qx.io.remote.Request("http://localhost:8887/testproject/";, > qx.net.Http.METHOD_POST, qx.util.Mime.JSON); >req.setParameter('supertruper', 'te

Re: [qooxdoo-devel] Request as POST ?

2007-03-02 Thread Dietrich Streifert
Hi Cornelius, you have to create a URI parameter list by encoding ( via encodeURIComponent ) the parameters and their values and concatenate (with an ampersand inbetween) the result together. The resulting string can then be put in the send data of qx.io.remoteRequest by using the methos setDat

[qooxdoo-devel] Problem with qx.util.GuiBuilder

2007-03-02 Thread Fabio Mino
Hi all, i'm trying to use GuiBuilder but i receive the following error 006109 ERROR: qx.ui.toolbar.MenuButton[205]: Attention! The value "mnuanag" is an invalid value for the property "menu" which must be typeof "object" but is typeof "string"! My test XML file is like this:

Re: [qooxdoo-devel] migrating using current svn

2007-03-02 Thread thron7
Sorry, my fault. I changed the invocation of the pretty printing without making sure pretty printing was turned on ;-). - Fixed (r6639). =Thomas > Maybe this is a unwanted side-effect of the migration stuff in trunk > (0.7). Thomas, can you have a look? > > Sebastian > > > > Am 02.03.2007 um 03:43

Re: [qooxdoo-devel] Request as POST ?

2007-03-02 Thread Tobias Koller (GERMO GmbH)
Hi, i dont know how you can send the params per Post (I also ask the same question once ;)) but "req.setParameter()" sends the param as GET. That's what I know ;) Tobias -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Cornelius Weiss Gesendet: Fr

[qooxdoo-devel] Request as POST ?

2007-03-02 Thread Cornelius Weiss
Hi list, this is my code: btn_save.addEventListener("click", function(e) { var req = new qx.io.remote.Request("http://localhost:8887/testproject/";, qx.net.Http.METHOD_POST, qx.util.Mime.JSON); req.setParameter('supertruper', 'test'); req.send(); }, this); B