Problem
Back from a standby phone, [Titanium.UI.AlertDialog](
http://developer.appcelerator.com/apidoc/mobile/1.2/Titanium.UI.AlertDialog-object) is no longer displayed on the screen.
Test Case
+In the iOS device+ :
Run the code below
The "Alert Dialog" opens
Locking the phone
Unlock the phone
The "Alert Dialog" is no longer present
// this sets the background color of the master UIView (when there are no windows/tab groups on it)
Titanium.UI.setBackgroundColor('#000');
var tabGroup = Titanium.UI.createTabGroup();
var win1 = Titanium.UI.createWindow({
title:'Tab 1',
backgroundColor:'#fff'
});
var tab1 = Titanium.UI.createTab({
icon:'KS_nav_views.png',
title:'Tab 1',
window:win1
});
var alertDialog = Titanium.UI.createAlertDialog({
title : "Title",
message : "Message",
buttonNames : ["Yes", "No"]
});
alertDialog.show();
tabGroup.addTab(tab1);
tabGroup.open();
MAJ
MAJ
Duplicate of TIMOB-6994. Closing
DUP issue.