Hi skar,

On Tuesday 17 November 2009 skar wrote:
> The class in question is this:
> > qx.Class.define("NewTextArea",
> > {
> >   extend : qx.ui.form.TextArea,
> >   events :
> >    {
> >      "changeReadOnly" : "qx.event.type.Data"
> >    },
> >    members :
> >    {
> >      _applyReadOnly : function(value, old)
> >      {
> >        this.base(arguments, value, old);
> >        this.debug("Apply readonly value:" + value + " old:" + old + "
> > ...");
> >        this.fireDataEvent("changeReadOnly", {value: value, old: old});
This line should be 

--snip--
this.fireDataEvent("changeReadOnly", value, old);
--snip--

cheers,
  Alex

------------------------------------------------------------------------------
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