Re: [qooxdoo-devel] onUpdate binding callback not called if submodel has been updated

2016-02-23 Thread John Spackman
Tuesday, 23 February 2016 at 07:56 To: qooxdoo Development <qooxdoo-devel@lists.sourceforge.net> Subject: Re: [qooxdoo-devel] onUpdate binding callback not called if submodel has been updated Hi John, This is not the problem, as you can see in your updated example, after have updated

Re: [qooxdoo-devel] onUpdate binding callback not called if submodel has been updated

2016-02-22 Thread William Oprandi
Hi John, This is not the problem, as you can see in your updated example, after have updated the model (line 34), onUpdate() has not be called. This is my problem, I would like to found a way to be "notified" when the model has changed. 2016-02-18 7:02 GMT+01:00 John Spackman

Re: [qooxdoo-devel] onUpdate binding callback not called if submodel has been updated

2016-02-17 Thread John Spackman
Hi William The onUpdate method is being called; is it possible that you were looking in the Playground log and not in the browser log? The Playground log only includes messages from this.warn() etc (or qx.log.Logger.warn() etc), but console.log() statements go direct to the browser console.

[qooxdoo-devel] onUpdate binding callback not called if submodel has been updated

2016-02-15 Thread woprandi
Hi, I have a controller with model and I bind a subset of this model to a list model (with addTarget). I update a property of an item of the list model and the controller model is well updated but the onUpdate callback is not called.. Check this example : http://tinyurl.com/h2o6yv4 I would like