[TIMOB-9327] MobileWeb: AlertDialog message gets truncated
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | High |
Status | Closed |
Resolution | Duplicate |
Resolution Date | 2012-06-05T12:19:16.000+0000 |
Affected Version/s | Release 2.0.1 |
Fix Version/s | n/a |
Components | MobileWeb |
Labels | n/a |
Reporter | Chris Barber |
Assignee | Chris Barber |
Created | 2012-05-31T04:52:08.000+0000 |
Updated | 2014-01-28T23:48:59.000+0000 |
Description
Long AlertDialog messages get truncated.
Ti.UI.setBackgroundColor('#000');
var win = Ti.UI.createWindow();
var alertDialog = Titanium.UI.createAlertDialog({
title: "this is a title",
message: "this is a long message that will be trucated on mobileweb"
});
alertDialog.show();
win.open();
Duplicate of TIMOB-9212