On Tue, Nov 17, 2009 at 11:38, skar <[email protected]> wrote:

> Matthew Gregory wrote:
> > Good to know, I was starting to get puzzled why it wasn't working :)
> >
> My listener was like this:
>
> > APP = this; this.input_field.addListener("changeReadOnly",function(e){
> >         this.EEE = e; //this event object gets overwritten, why!?!?!?
>

Events are reused, so if you want to save an event you should clone it.
Change this line to:

  this.EEE = e.clone()

and you should be all set.

Derrell
------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to