hi, i have this code :
if(codeConfidentiel == null || codeConfidentiel == ''){ Ti.Platform.openURL('tel:' + passerelle + ',' + number + '#'); } else{ Ti.Platform.openURL('tel:' + passerelle + ',' + codeConfidentiel + '#,' + number + '#'); }on iphone it is ok but on android, in the first case, "passerelle + ',' + number" is called and in the second case, only passerelle + ',' + codeConfidentiel is called.
it seems that # and string after is ignored
can anyone help please ?
Your Answer
Think you can help? Login to answer this question!