What are the events supported by Ember.js?

I could not find it anywhere and did not answer a single question. The only thing I know for sure is the 'click' (via Event Handling with action ).

Related questions that I saw (which do not answer my question):

+7
source share
2 answers

Supported event names are listed at http://emberjs.com/api/classes/Ember.View.html . Just search for "Possible event names":

Touch events : "touchStart", "touchMove", "touchEnd", "touchCancel"

Keyboard Events : 'keyDown', 'keyUp', 'keyPress'

Mouse events : "mouseDown", "mouseUp", "contextMenu", 'click', "doubleClick", "mouseMove", "focusIn", "focusOut", "mouseEnter", MouseLeave

Form events : 'submit', 'change', 'focusIn', 'focusOut', 'input'

HTML5 drag & drop events : "dragStart", "drag", "dragEnter", "dragLeave", "drop", "dragEnd"

+15
source

Here is a list in the source as well

+2
source

All Articles