autoLink
with URLs for
Ti.UI.Label
is not implemented on Windows. See
https://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.Label-property-autoLink for details.
var win = Ti.UI.createWindow({ backgroundColor: 'green'});
var label1 = Ti.UI.createLabel({
text: 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. http://www.appcelerator.com/ Ut enim ad tel:0123456789 minim veniam, quis nostrud mailto:foo@example.com exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',
autoLink: Titanium.UI.AUTOLINK_URLS,
backgroundColor: 'white',
width: Ti.UI.FILL, height: Ti.UI.SIZE
});
win.add(label1);
win.open();
Expected: Words with
http://
,
tel:
and
mailto:
scheme should have hyperlinks.
https://github.com/appcelerator/titanium_mobile_windows/pull/952
Closing ticket as fixed.