I am not deploying my experiments in V12 yet (for a good reason), so I just wanted to ask whether smart phones can detect that a field in a grid component that is an embedded component in a panel has a phone number in it.. so that when user clicks it on a smart phone, it does the 'call' thing. Is there something I should be setting in the phone number field on my grid to make this happen?

UPDATE: To save someone from reading through the trial and errors in this thread, the answer to my question was to put the following javascript code in the OnClick event of the phone number field on my embedded read-only grid:

Code:
\\In this case, MOBILE is the name of the field that holds the phone number.
var pno = {grid.object}.getValue('G','MOBILE',{grid.rowNumber});

if (A5.flags.supportsTouch !=false) {
	window.location = 'tel:'+pno;
} else {
	alert('Not running on a mobile phone device.');
}