[qooxdoo-devel] Using RequireJS modules in a qooxdoo app?

2013-02-22 Thread Derrell Lipman
Hi all. I have some modules written for Node that I want to use in my qooxdoo app. I found that qooxdoo's RequireJS functionality can export qooxdoo libraries for use by external (non-qooxdoo) apps to require() them. I need the opposite, and haven't yet found a reference. I need to require() extern

Re: [qooxdoo-devel] Jsonp and Xhr request - Request Header

2013-02-22 Thread Marc-André Dubois
It's possible to force specific param to be sent in Query String Parameters even if Request is a POST. With GET request, all param is in Query String Parameters, it's perfect With POST and PUT, I need to send 2 param in Query String Parameters and Json Object in Form Data. Actualy all param are i

Re: [qooxdoo-devel] Jsonp and Xhr request - Request Header

2013-02-22 Thread Marc-André Dubois
Initialy, it was "*" I used but I switched for origin value in HeadersRequest for testing... Now we are looking to swith the headersRequestParam by QueryParam but in POST request, queryParm are replaced by FormParam... Marc-André Dubois madub...@lanauco.com Programmeur-Analyste -Message d'o

Re: [qooxdoo-devel] Jsonp and Xhr request - Request Header

2013-02-22 Thread Richard Sternagel
Hi, okay, now I see that you triggered a "preflighted request" [1] with your custom headers and your HTTP method other than GET or POST. The error message you're getting is strange maybe the problem is somewhere else. What's the value of your "origin"? > responseContext.getHeaders().putSingle

Re: [qooxdoo-devel] Jsonp and Xhr request - Request Header

2013-02-22 Thread Marc-André Dubois
Hi, I already switch to qx.io.request.Xhr. I need to use POST, PUT and DELETE request. Actualy, I added ResponseHeader to my server: responseContext.getHeaders().putSingle("Access-Control-Allow-Origin", origin); responseContext.getHeaders().putSingle("Access-Control-Allow-Methods", "DELETE, GET,

Re: [qooxdoo-devel] Jsonp and Xhr request - Request Header

2013-02-22 Thread Richard Sternagel
Hi Marc-André, try switching to "qx.io.request.Xhr" [1]. But remember that your HTTP Requests are then subject to the same-origin policy. At first I thought you could use "CORS" aka "Cross-site HTTP requests" but apparently you can't add custom headers there, too [2]. Unfortunately these restr

[qooxdoo-devel] Toolbar Height, Button and Tabview Bar Height

2013-02-22 Thread 689137
Hi Qooxdoo Team! Could you please tell me how to change toolbar height? I am setting it to minimum, and still it is too big for my application. Also the buttons are too big, as well as tabview's bar height. (by too big I mean its default height). For instance you can take a loog at qooxdoo playgro

Re: [qooxdoo-devel] qooxdoo 0.7 with current qooxdoo-version mix ?

2013-02-22 Thread thron7
On 02/22/2013 11:04 AM, Fritz Zaucker wrote: > Hi Tobias > > On Fri, 22 Feb 2013, Tobias Koller \(GERMO GmbH\) wrote: > >> After including the ".theme.*" I was able to start my application and I >> thought that's it, but unfortunately it doesn't work. >> >> F.e. all the events I fire (with this.di

Re: [qooxdoo-devel] qooxdoo 0.7 with current qooxdoo-version mix ?

2013-02-22 Thread Fritz Zaucker
Hi Tobias On Fri, 22 Feb 2013, Tobias Koller \(GERMO GmbH\) wrote: > After including the ".theme.*" I was able to start my application and I > thought that's it, but unfortunately it doesn't work. > > F.e. all the events I fire (with this.dispatchevent) doesn't work. No > EventListener is startin

Re: [qooxdoo-devel] qooxdoo 0.7 with current qooxdoo-version mix ?

2013-02-22 Thread Tobias Koller (GERMO GmbH)
This is my complete config.json { "name": "myapp", "include" : [ { "path" : "${QOOXDOO_PATH}/tool/data/config/application.json" } ], "export" : [ "api", "build", "clean", "distclean", "fix", "inspector", "lint",

Re: [qooxdoo-devel] qooxdoo 0.7 with current qooxdoo-version mix ?

2013-02-22 Thread thron7
On 02/21/2013 05:49 PM, Tobias Koller (GERMO GmbH) wrote: qooxdoo 0.7 with current qooxdoo-version mix ? After trying around millions of things i finally got the solution. I added this "${APPLICATION}.theme.*" To the "include"-part of the config.json and now the theme is getting loaded corr