I am using puppet version 1.2.3 and basic version 1.1.0
Here is my user interface and event hash:
ui:{ title : '#modelTypeTitle' }, events: { 'change @ui.title' : 'validateTitle' },
This is similar to what the documentation says: "You can also use the ui hash values ββfrom events and trigger keys using" @ ui.elementName "
To clarify, I want to know why what I'm trying to do above does not work. but the following works just fine:
events: { 'change #modelTypeTitle' : 'validateTitle' },
Timigen
source share