Rank: Member
Joined: 8/12/2010 Posts: 1 Points: 3
|
Hello,
It looks like there is a way to configure the base plugin to make phone numbers and url's clickable.
Is there a way for us to do the same with the custom Mobile Entree apps built using the API?
thanks,
JJ
|
 Rank: ME Staff
Joined: 1/12/2009 Posts: 261 Points: 354 Location: VA
|
Yes, it is by prefixing a link with "tel:". You can use the following as a guide:
EntreeListItemDetailHyperlink theLink = myGroup.AddListItem<EntreeListItemDetailHyperlink>(); theLink.Name = "Phone Number"; theLink.Text = "Click here to Dial"; theLink.Href = "tel:" + ThePhoneNumber
-joe
|