Re: [qooxdoo-devel] Can“t move a window added at the right - just grow

2013-04-02 Thread arsousa
It's not a problem with demobrowser because it's happening in my application. Thanks for the tip Norbert! It solves my problem :) Ana Rita Sousa -- View this message in context: http://qooxdoo.678.n2.nabble.com/Can-t-move-a-window-added-at-the-right-just-grow-tp7583164p7583171.html Sent from

Re: [qooxdoo-devel] Build script Unexpected token var

2013-02-21 Thread arsousa
I'm sorry, but is no need to removing the semicolon before } else. The problem was solved just wrap the two for() loops in curly braces. I think my browser had refreshing problem (maybe didn't clean up the cache). -- View this message in context: http://qooxdoo.678.n2.nabble.com/Build-script-U

Re: [qooxdoo-devel] Build script Unexpected token var

2013-02-20 Thread arsousa
Thanks for the tips. I found where the problem are, but I don't understand why that cause an error (after build process), because there is no syntax error. The issue was in the contribution qxProtovis.Panel if (position(row)) for (var i = 0; i < row.length; i++) { *row[i].dy += h;* }

Re: [qooxdoo-devel] Build script Unexpected token var

2013-02-19 Thread arsousa
Thanks for the reply. I've already built with format option equal to true and the result is: There is a syntax error on line: 14725 14724: ;if(zE(zG))for(var i=0;ihttp://qooxdoo.678.n2.nabble.com/Build-script-Unexpected-token-var-tp7

[qooxdoo-devel] Build script Unexpected token var

2013-02-18 Thread arsousa
Hi, I migrate my project to the last qooxdoo version 2.1.1. The /source/ works fine and when I do the application /build/ everything it's ok, without errors. But when I run the application (build) in browser occurs the following error: /Uncaught SyntaxError: Unexpected token var (script xxx.js li

Re: [qooxdoo-devel] qx.data.controller.Object - setModel with strange behavior

2012-02-27 Thread arsousa
Hi, I've already solved the problem and the error was about another thing which exception has not been caught properly. However the exception should arise in both cases I suppose and not just in second case. But ok, it's solved!! Ana Rita Sousa -- View this message in context: http://qooxdoo.

[qooxdoo-devel] qx.data.controller.Object - setModel with strange behavior

2012-02-24 Thread arsousa
Hi, I'm using qx.data.controller.Object to control the data binding of several widgets: this._model = qx.data.marshal.Json.createModel(modelData); this._controllerLegend = new qx.data.controller.Object(); this._controllerLegend.addTarget(methodBox, "modelSelection[0]", "method", t

Re: [qooxdoo-devel] New in QooxDoo, problem with selectbox

2012-01-23 Thread arsousa
Hi, I think I shouldn't create the store and the controller each time you click. You just have to reload the store. Something like this: {"query": [{"json_id": "Puerto serie disponible", "fecha": "2012-01-22 13:40:40.836348", "editor": "JGenicio"}], "datos": [{"temperatura": 19.0625, "TL": 23.1

Re: [qooxdoo-devel] How to use Google Map API V3 on QooXdoo?

2011-12-07 Thread arsousa
Hi Cherrot, In my project I have an integration with Qooxdoo and OpenLayers and I use qx.html.Element#getDomElement with success. var wdom = wdg.getContentElement().getDomElement(); var map = new OpenLayers.Map(wdom, mapOptions); In case of Google Maps could be done in the same way: var wdom =

[qooxdoo-devel] Place Dialog Contribution to Widget

2011-11-23 Thread arsousa
Hello Everyone, I use quite often the Dialog Contribution in my applications, but had a problem. I want to place the alerts, prompts, confirms, etc, near to the widget which trigger it. Sometimes the widget was in the left/right side of application and the dialog appear in the center, and the use

Re: [qooxdoo-devel] RpcPython

2011-09-27 Thread arsousa
Hi, I use Django framework in server side and use rpc4django for JSON-RPC and it works perfectly. Take a look: http://davidfischer.name/rpc4django/ Cheers, Ana Rita -- View this message in context: http://qooxdoo.678.n2.nabble.com/RpcPython-tp6834736p6836901.html Sent from the qooxdoo mailing

Re: [qooxdoo-devel] Object of qx.util.Json.parse()

2011-06-03 Thread arsousa
Hi, I prefer to use qx.data.marshal.Json.createModel to turn json data into a model. Then you can get the array objects and put them into table rows: data = qx.data.marshal.Json.createModel(yourJson); getArrayObject.forEach( addRow, data ); tableDM.setData( rows ); var addRow = function (obj)

Re: [qooxdoo-devel] Core - Sandbox architecture (was: qcl access demo application)

2011-05-27 Thread arsousa
I had to make one little change in qcl source to put authentication works for me. There are two possibilities of authentication , with user and password other with session id. Both use the same rpc method "authenticate", but the parameters are different. RPC4Django which I use in server side don't

Re: [qooxdoo-devel] Core - Sandbox architecture (was: qcl access demo application)

2011-05-27 Thread arsousa
Hi, I've already implemented Core - Sandbox - Modules (QCL) architecture in my project with success. This architecture really fits to me, because I'm developing a web GIS framework (using django, openlayers, qooxdoo) which it will allow to develop web map applications for different projects. That

Re: [qooxdoo-devel] Qcl broadcast all the time

2011-05-17 Thread arsousa
I response to myself. I've already know what it happens. I had set by default the startMessageTransport service which uses broadcast request. I really don't need it so I have just removed it. Ana Rita -- View this message in context: http://qooxdoo.678.n2.nabble.com/Qcl-broadcast-all-the-time-t

[qooxdoo-devel] Qcl broadcast all the time

2011-05-17 Thread arsousa
Hi, I've been implementing qcl to my project using core-sandbox-modules architecture with success so far. But it's executing broadcast request all time, which disturbs the usage of the application, because it's processing something all the time. In my case this request doesn't do nothing, so is it

Re: [qooxdoo-devel] Loading data into a SelectBox

2011-05-10 Thread arsousa
Using a VirtualSelectBox or SelectBox the input data model must be like a list. For your model json to be consider like list should be structure like this: http://demo.qooxdoo.org/current/demobrowser/#data~JsonToList.html http://demo.qooxdoo.org/current/demobrowser/resource/demobrowser/demo/data/

Re: [qooxdoo-devel] Loading data into a SelectBox

2011-05-09 Thread arsousa
Hi, The problem is your data. Select box model don't "understand" the way your data are structured. you have to see examples of direct binding like this: http://demo.qooxdoo.org/current/demobrowser/#data~SelectBox.html When your data don't bind directly to widget model, you can custom the bindin

Re: [qooxdoo-devel] qcl access demo application

2011-05-09 Thread arsousa
Hi, I've a doubt about this architecture core-sandbox-modules, in qcl trunk version. As long as I could understand the modules are independent from each other. But there are many cases that one module need information about the others. In my case, for example, I've been implemented OpenLayers (an

Re: [qooxdoo-devel] qcl access demo application

2011-05-09 Thread arsousa
Hi, I'm trying to implement qcl, but just the javascript classes. I'm using Django as server, not PHP, which has a RPC service implemented. I think qcl has useful extensions for any kind of web application development, since the server component it's compatible with RPC protocol. Christian, could

Re: [qooxdoo-devel] qcl access demo application

2011-05-09 Thread arsousa
Hi Christian, I don't have github account, but your last example really helps me to understand the logic. Thanks a lot. Ana Rita -- View this message in context: http://qooxdoo.678.n2.nabble.com/qcl-access-demo-application-tp6295025p6343608.html Sent from the qooxdoo mailing list archive at Na

Re: [qooxdoo-devel] qcl access demo application

2011-05-06 Thread arsousa
Hi, I'm also try to implement the trunk version of qcl, but it's been hard because doesn't exist any documentation or examples available. I read the presentation http://www.slideshare.net/nzakas/scalable-javascript-application-architecture to understand better the architecture core-sandbox-module

Re: [qooxdoo-devel] Intregation with OpenLayers, problem running from build

2011-04-26 Thread arsousa
It works perfect!! Thank you very much! Regards, Ana -- View this message in context: http://qooxdoo.678.n2.nabble.com/Intregation-with-OpenLayers-problem-running-from-build-tp6306242p6306383.html Sent from the qooxdoo mailing list archive at Nabble.com. --

[qooxdoo-devel] Intregation with OpenLayers, problem running from build

2011-04-26 Thread arsousa
Hi everyone, I've been developing an application which integrate with OpenLayers and everything works fine since I run it from the source. I executed the build process with no errors or warnings (because I #ignore de OpenLayers classes). When run it from build environment the map appear, but it er