[AC-1135] EmailDialog does not open on mobileweb-wp8
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | n/a |
Status | Resolved |
Resolution | Needs more info |
Resolution Date | 2015-09-28T15:53:02.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | Titanium SDK & CLI |
Labels | TCSupportTriage |
Reporter | thomas lequenne |
Assignee | Shak Hossain |
Created | 2014-10-13T15:03:25.000+0000 |
Updated | 2016-03-08T07:37:29.000+0000 |
Description
Step 1: run the code below on the windows mobile
(titanium build -p mobileweb -T wp8 -C xd --wp8-publisherguid ...)
Step 2: click on the blue screen
Step 3: notice that that email dialog does not open
var win = Ti.UI.createWindow({
backgroundColor: 'blue'
});
win.addEventListener('click', function(){
Ti.API.info('Mail');
var emailDialog = Titanium.UI.createEmailDialog();
emailDialog.subject = "Subject";
emailDialog.messageBody = 'Hi,\n'+'This is the body';
emailDialog.open();
});
win.open();
[~itomale] is this still an issue for you?