Hi,

If one actually initializes a form controller with:

var blah = new qx.data.controller.Form(model, target);

the model is not set because models are not set unless the target is not
null.  The constructor for qx.data.controller.Form needs to flip the
initializers from:


    if (model != null) {
      this.setModel(model);
    }

    if (target != null) {
      this.setTarget(target);
    }

to:

    if (target != null) {
      this.setTarget(target);
    }

    if (model != null) {
      this.setModel(model);
    }

Greg

------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to