Feature
Possibility to block landscape orientation over Email Dialog when the parent window has been locked to portrait.
Test case
tiapp.xml
<iphone>
<orientations device="iphone">
<orientation>Ti.UI.PORTRAIT</orientation>
</orientations>
</iphone>
app.js
var win = Ti.UI.createWindow({
height: Ti.UI.FILL,
width: Ti.UI.FILL,
backgroundColor: "#FFF"
});
var button = Ti.UI.createButton({
width: 200,
height: 60,
title: "Open Email Dialog"
});
button.addEventListener('singletap', function(evt){
Ti.UI.createEmailDialog().open();
});
win.add(button);
win.open();
Closing ticket as duplicate.