I would suggest running a special jQuery event and registering the event with the display in your Ember application. For instance:
Ember.Application.create({ customEvents: { // key is the jquery event, value is the name used in views formcancel: 'formCancel' } });
And in your question cancelButton:
click: function(evt){ Ember.$().trigger('formcancel') }
This will bubble like other DOM Ember events displayed.
source share