Description

The
<phonecallChunk> element allows you to place a WTAI click-to-call link onto your site. When the link is clicked, it invokes a WTAI function on the device and will initiate a call to the number specified in the WAPL. For devices that do not support this functionality, the number is displayed as plain text.
Quick Example
- <?xml version="1.0" encoding="UTF-8" ?>
- <wapl xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://wapl.wapple.net/wapl.xsd">
- <layout>
- <row>
- <cell>
- <chars>
- <value>Hello World</value>
- </chars>
- </cell>
- </row>
<phonecallChunk>
<phone_number>441234567890</phone_number>
</phonecallChunk>
- </layout>
- </wapl>
Child Elements
phone_number
The phone number that you want the device to call.
Example:
<phone_number>441234567890</phone_number>
show_label
A label to display instead of the phone number. If not specified, this will default to the speficied phone number.
Example:
<phone_number>441234567890</phone_number>
<show_label>Call Me!</show_label>