Success! Looks like we've fixed this one. According to our records the fix was applied for
TOUCH-3109
in
a recent build.
-
Sencha Premium Member
LoadMask listeners are not passed to Viewport.setMasked() (2.0.1)
Hi
I'm trying to listen for a tap event on a LoadMask container ... but the event doesn't fire, only for a Mask container
So this doesn't work
Code:
Ext.Viewport.setMasked({
message:"Lederhosen",
xtype: 'loadmask',
listeners: {
tap: function() {
console.debug("try 1")
}
}
});
While this one here works ok
Code:
Ext.Viewport.setMasked({
message:"Lederhosen",
xtype: 'mask',
listeners: {
tap: function() {
console.debug("try 2")
}
}
});
It shouldn't be like this, should it?
Regards
-
I'm actually classifying this as a bug and have fixed it for 2.0.3
-
Sencha Premium Member
Sweet ... thanks
-
Sencha Premium Member
Mitchell, do you know when 2.0.3 will be release to the masses? Could you share an override in the meantime for us?
-
Touch Premium Member
Hi,
This is still not working in 2.1 ??