Re: [qooxdoo-devel] JSONP , callback never called, qooxdoo 1.6

2012-01-23 Thread Vassili Gontcharov
Hi Tristan, It works now, thank :-) My fault was I used callback parameter in my url, I deleted callback from url and let qooxdoo manage it. But I can't understand what it worked with my django server ... Is there a possibility to use a "request queue" for JSONP requests ? Vassili 2012/1/23 Tr

[qooxdoo-devel] mobile local storage

2012-01-23 Thread Alex
I'd like to store login data locally on the mobile terminal using html5 storage. Will that technique survive phonegap? And what would be the best way to not store plain text passwords? Some kind of hash from the server? Alex On Jan 23, 2012 5:00 PM, "Alex" wrote: > Hi Guys, > > I finally got a c

Re: [qooxdoo-devel] mobile experimental

2012-01-23 Thread Alex
I found in the manual a mention about this. It's to get more comments and expect more bugfixes. sent with my mobile phone On Jan 23, 2012 5:00 PM, "Alex" wrote: > Hi Guys, > > I finally got a customer requirement to put qooxdoo to use. > It's a simple Mobile client for their web app. I just need

[qooxdoo-devel] Unexpected behaviour of qx.application.Standalone class

2012-01-23 Thread Stefan Andersson
The following is added in qx.application.Standalone class (the include key): qx.Class.define("qx.application.Standalone", { extend : qx.application.AbstractGui, include : qx.application.MDecoration, the MDecoration is in the correct directory and is a valid Mixin class: qx.Mixin.define("qx.

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

2012-01-23 Thread Jesús
Hi, It's perfect your solution. Simple , almacen.reload(); In a first time, i make a: controller.resetModel(); But with your solution is perfect. Thanks. El 23 de enero de 2012 a las 19:42 arsousa escribió: > Hi, > > I think I shouldn't create the store and the controller each time you cl

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

[qooxdoo-devel] Resolved: How to data bind to a comboBox?

2012-01-23 Thread Simon White
Hi I think this may have been a mistake on my part. It is working now as part of my comboBox class: this.bind("value",tmConfig.form["__nav"+tmConfig.table].__lstView,"selection[0]."+tmConfig.field,{converter: function(data,model,source,target) {return source.findItemByLabel(data);}}); I pr

Re: [qooxdoo-devel] Decorator Questions

2012-01-23 Thread Simon White
Thank-you everything is working correctly now. Simon On 22/01/2012 8:45 AM, Norbert Schröder wrote: > Hi Simon, > > as you will probably know from [1] the appearance theme contains and > controls the styling information of a widget. Basically, it is > responsible for applying fonts, colors and d

[qooxdoo-devel] Prob with textfields

2012-01-23 Thread Johann Mellin
Hi, I have a prob with the textcolor inside texfields. Recently I upgraded the qooxdoo version. After some updates in the source code, everything seemed to work well. At least with firefox browser. Then people (who work with IE) said, the data inside some textfield is lost. I checked it and real

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

2012-01-23 Thread Jesús
Hi again, Sorry but, i need know how to make for change de array model of one selectbox when push one button. I have too new in qooxdoo I have one button and one function to fire event "on-click", this function query to json server and put in selectbox one field of json: {"query": [{"jso

[qooxdoo-devel] mobile experimental

2012-01-23 Thread Alex
Hi Guys, I finally got a customer requirement to put qooxdoo to use. It's a simple Mobile client for their web app. I just need to store login info, retrieve some data in a list, display / edit and send it back again. In the API docs I see that many functions are *experimental*. How production re

Re: [qooxdoo-devel] qx.io.rest.Resource caching in IE?

2012-01-23 Thread aditya siram
Hi Tristan, Unfortunately I had to switch everything to use qx.io.remote.Request (which does not exhibit the same behavior in IE) over the weekend due to time constraints and so am unable to devote more time to debugging this error. I will certainly be revisiting this class as I continue to use Qoo

Re: [qooxdoo-devel] JSONP , callback never called, qooxdoo 1.6

2012-01-23 Thread Tristan Koch
Hi Vassili, you need to tell qooxdoo which callback to expect: req.setCallbackName("aststats.page.dashboard.Content.saveResult") But actually, it is easier and more flexible [1] if you remove the callback parameter from the URL and let qooxdoo insert it. By default, it is callback=. >From you

[qooxdoo-devel] JSONP , callback never called, qooxdoo 1.6

2012-01-23 Thread Vassili Gontcharov
Hi, I use playframework(Java) as backend and qooxdoo as frond-end. qx.io.request.Jsonp is used for fetching data from my server. This is one part of my code: url = " http://localhost:9000/cdr/dashboards/mostRecentsCalls/?format=json&callback=aststats.page.dashboard.Content.saveResult "; var req =

[qooxdoo-devel] The Sublime Text Editor - Python based, Multi-platform.....

2012-01-23 Thread gkoller
Hallo guys, As a Linux user I have been unable to do more with TextMate than "lust" after it now I find that there is an interesting alternativethere seems to be a lot of positive buzz around SUBLIME. Having just taken another quick look at their absolutely beautiful interface (imo) I f

[qooxdoo-devel] SelectBox update array?

2012-01-23 Thread Ute ocio
Hi, I'am Spanish and my english is too ba, sorry The question: 1 selectbox connect to json query to server ( uController with temp. sensor), the json is: {"query": [{"json_id": "Puerto serie disponible", "fecha": "2012-01-22 13:40:40.836348", "editor": "JGenicio"}], "datos": [{"temperat

Re: [qooxdoo-devel] How to data bind to a comboBox?

2012-01-23 Thread Tristan Koch
Hi Simon, Not sure. At first glance, this looks correct. I find the error message confusing, since the combo box does have a value property. Can you provide a playground example? Tristan Am 20.01.2012 um 22:02 schrieb Simon White: > Hi > > comboBox.bind("value",listBox,"selection[0].DESC"{co

Re: [qooxdoo-devel] qx.io.rest.Resource caching in IE?

2012-01-23 Thread Tristan Koch
Hi Deech, if you set cache to false, like this res.configureRequest(function(req) { req.setCache(false); }); the URL should contain a timestamp, e.g. ?nocache=1327302060065 In the log file you pasted, I don't see any timestamps. In general, the cacheability of a response is controlled by he