Is this correct?
this.__z__handleSubmit = this.form.on('submit', this.__handleSubmit.bindAsEventListener(this));
Is the bindAsEventListener necessary? I want to get back the Event Handler so I can later destroy it with:
this.__z__handleSubmit.stop();
That is not conveniently tied to any event handler, so what is the convenient means of disconnecting it, as in __eventHandler.stop(); ?