[TIMOB-8228] iOS: Sending a pause command using #, Inconsistent behavior
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Low |
| Status | Closed |
| Resolution | Won't Fix |
| Resolution Date | 2017-07-26T02:56:55.000+0000 |
| Affected Version/s | Release 1.8.0.1, Release 2.0.1, Release 3.2.0 |
| Fix Version/s | n/a |
| Components | iOS |
| Labels | n/a |
| Reporter | Devang Gandhi |
| Assignee | Eric Merriman |
| Created | 2012-03-23T11:46:04.000+0000 |
| Updated | 2017-07-26T02:56:55.000+0000 |
Description
Customer is using Ti.Platform.openURL to dial from the app.
He wants to send, tel:559-222-1111,,##,## or tel:559-222-1111,,####.
but it won't work,
but if he sends: tel:559-222-1111,,## it works like a charm.
var win = Ti.UI.createWindow({
backgroundColor:'white'
});
var button = Titanium.UI.createButton({
title: 'Hello',
top: 10,
width: 100,
height: 50
});
win.add(button);
button.addEventListener('click',function(e)
{
Ti.Platform.openURL('tel:559-222-1111,,##,##');
});
win.open();
You can only test this on device.
Tested with 2.0.1GA2 on an iPhone 3GS (iOS 5), issue still reproducible.
Closing due to inactivity. If this issue still exists, please raise a new ticket.