Reputation: 272094
events:{ 'kepressUp input#price': 'submitForm' },
How would I detect keypress up ?
WHen someone types something in the price section, I want to automatically submit the form.
Upvotes: 0
Views: 192
Reputation: 14025
kepressUp event doesn't exists. You can use keyup, keydown and keypress
kepressUp
keyup
keydown
keypress
events:{ 'keyup input#price': 'submitForm' },
Upvotes: 4