You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like the event context of onKeypadOpen is the numpad itself, rather than the target object. Nothing else is passed into the onKeypadOpen trigger.
However, onKeypadOpen is triggered from within the nmpd.open(target, initialValue) function so you can modify the nmpd.trigger('numpad.open'); line to nmpd.trigger('numpad.open', target); if you would like your initial target to be accessible.
You would access that within your onKeypadOpen like so:
onKeypadOpen: function(event,target){// do something with target}
Is it somehow possible to access the caller object (especially attributes or parent attributes) within e.g.
the onKeypadOpen: function () {
The text was updated successfully, but these errors were encountered: