Aren't I doing this by passing an options object when instantiating the control? new someControl( '.domEl', { data: data } );For the control to listen to events using the "{property} change" syntax, property must be defined on this.options before the controller's init() gets called.
So we think this won't work?Edit: Oops -- apparently the parent's setup() is responsible for setting up the event bindings for "{property} change" callbacks, not init() as I thought above.