-
28 Mar 2011 11:35 AM #1
Overlay Animation Bug 1.1
Overlay Animation Bug 1.1
When adding showAnimation to overlays and clicking outside of the modal, the modal hides but the overlay stays and the application becomes unresponsive (no javascript errors).
To replicate the bug, do the following using Sencha Touch 1.1:
Using the overlays example, add showAnimation. Once, the modal opens up try scrolling sideways (left to right) and then click outside of the modal to close it. The modal hides but the overlay remains.
If it doesnt happen the first time do it a few time.
var overlay = new Ext.Panel({
floating: true,
modal: true,
centered: false,
width: Ext.is.Phone ? 260 : 400,
height: Ext.is.Phone ? 220 : 400,
styleHtmlContent: true,
dockedItems: overlayTb,
scroll: 'vertical',
contentEl: 'lipsum',
cls: 'htmlcontent',
// add this
showAnimation: {
type: 'fade',
duration: 400,
}
});
-
28 Mar 2011 1:03 PM #2
I pinpointed the problem.
Its on line 13392, its something new added in 1.0.
if (this.running[el.id] === undefined) {
return;
}
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
Overlay close on click event (Sorry, one overlay at a time please!)
By jeffj in forum Sencha Touch 1.x: DiscussionReplies: 2Last Post: 17 Nov 2010, 3:54 AM -
login overlay...
By rios in forum Sencha Touch 1.x: DiscussionReplies: 4Last Post: 8 Nov 2010, 7:06 AM -
Overlay with animation
By ankuravlani in forum Sencha Touch 1.x: DiscussionReplies: 2Last Post: 18 Aug 2010, 12:30 PM -
Buttons on an overlay
By nosarious in forum Sencha Touch 1.x: DiscussionReplies: 3Last Post: 20 Jul 2010, 8:40 AM


Reply With Quote