Re: [qooxdoo-devel] changeValue event in htmlArea?

2013-02-25 Thread John Spackman
I've not used HtmlArea for a while but it might worth bearing in mind that it is implemented as an iframe and events go to the iframe, not to the main window ­ you might have to trap events on the iframe's document body. In order for your sample to work, HtmlArea would have to be specifically trap

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

2013-02-25 Thread thron7
On 02/25/2013 05:27 PM, Derrell Lipman wrote: On Mon, Feb 25, 2013 at 11:20 AM, Derrell Lipman > wrote: On Mon, Feb 25, 2013 at 11:05 AM, thron7 mailto:thomas.herchenroe...@1und1.de>> wrote: Hi Derrell, what's wrong with:

Re: [qooxdoo-devel] changeValue event in htmlArea?

2013-02-25 Thread thron7
Have you tried other events, like 'keyup'?! On 02/25/2013 04:37 PM, Alexei Vinidiktov wrote: On Mon, Jan 11, 2010 at 3:23 PM, Alexander Steitz mailto:alexander.ste...@1und1.de>> wrote: Unfortunately not. You have to use event listeners to check for any changes. Feel free to open

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

2013-02-25 Thread Derrell Lipman
On Mon, Feb 25, 2013 at 11:20 AM, Derrell Lipman < derrell.lip...@unwireduniverse.com> wrote: > On Mon, Feb 25, 2013 at 11:05 AM, thron7 wrote: > >> Hi Derrell, >> >> what's wrong with: >> >> >> >> ... >> >> qx.Class.define("Foo", { >> members : { >> bar : function () { >>

Re: [qooxdoo-devel] Disposal of properties

2013-02-25 Thread thron7
On 02/25/2013 12:51 PM, Michal Dvor(ák wrote: Hello, *What is the proper way to dispose properties?* * * 1. How to technically do it. 2. Who should do it? Since owning object doesn't have be aware of what is being set to it. But still in some cases it might be proper way.. The general strateg

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

2013-02-25 Thread Derrell Lipman
On Mon, Feb 25, 2013 at 11:05 AM, thron7 wrote: > Hi Derrell, > > what's wrong with: > > > > ... > > qx.Class.define("Foo", { > members : { > bar : function () { > require(["script/other.js"], function(other) { > var a = new qx...(); >

[qooxdoo-devel] Offline store

2013-02-25 Thread Marc-André Dubois
Hi, I use qx.data.store.Offline("session" ,"local") for storage The type of the object stored is com.lanauco.mobile.core.security.model.Session() When I try to restore my object, I retreive an object of type : qx.data.model.application"creationDate"deleted"id"permissionList"userDescr iptor

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

2013-02-25 Thread thron7
Hi Derrell, what's wrong with: ... qx.Class.define("Foo", { members : { bar : function () { require(["script/other.js"], function(other) { var a = new qx...(); other.baz(a); a.boing(other); })l

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

2013-02-25 Thread Tobias Koller (GERMO GmbH)
Yes i listened to every event and none off them is fired before the browser-login promt appears. I guess I have to use a workaround. We are using our own Restful-webservice-framework which will (since today ;)) check, if a Requestheader ("X-GERMO-No-Auth-Header") was sent. If this header was sen

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

2013-02-25 Thread thron7
I'm not sure if you can override browser behavior, but have you tried listening for the "failed" event?! T. On 02/25/2013 09:14 AM, Tobias Koller (GERMO GmbH) wrote: > I'm using like this: > > get : function(path) > { > var url = this.getBaseUrl(

Re: [qooxdoo-devel] changeValue event in htmlArea?

2013-02-25 Thread Alexei Vinidiktov
On Mon, Jan 11, 2010 at 3:23 PM, Alexander Steitz wrote: > Unfortunately not. You have to use event listeners to check for any > changes. > Feel free to open a bug report for this feature if you like to see it in > the > future. > How do I add a keypress event listener to HtmlArea? This didn't

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

2013-02-25 Thread Marc-André Dubois
I found solution for my problem! I develop for mobile but I test in Chrome. So, with de Run command: chrome.exe --disable-web-security, Header request injection work well and on mobile, it's working to... Thank you and have a nice day. Marc-André Dubois madub...@lanauco.com Programmeur-Analyste

[qooxdoo-devel] Disposal of properties

2013-02-25 Thread Michal Dvořák
Hello, *What is the proper way to dispose properties?* * * 1. How to technically do it. 2. Who should do it? Since owning object doesn't have be aware of what is being set to it. But still in some cases it might be proper way.. Thanks Mikee -

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

2013-02-25 Thread Tobias Koller (GERMO GmbH)
I'm using like this: get : function(path) { var url = this.getBaseUrl() + "/" + path; var r = new qx.io.remote.Request(url,"GET",qx.util.Mime.JSON);

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

2013-02-25 Thread thron7
On 02/25/2013 06:59 AM, Tobias Koller (GERMO GmbH) wrote: > Thanks for your help. > > But i spend almost 2 days for trying to convert the app to 0.8. > I found a way to use the 0.7-version with our new restfull webservices. > After I made all changes in my application I may have the time to create