Grandstream GXP21xx XML Application Guide User Manual

Page 26

Advertising
background image

FIRMWARE VERSION 1.0.4.23 GXP21xx XML APPLICATION GUIDE Page 26 of 36

Example 4 - Radio button:

Two groups are defined in this example with value 1, 2, 3, 4 to be selected for each group. Only one radio

button for each group could be selected.

Example 5 - Checkbox:

The following example shows four checkboxes to be selected. Users could do multiple selection by using

checkbox.

<input group="group1" value ="4" type="radio" selected="1" label="">

<styles pos_x="120" pos_y="35"/>

</input>

<input group="group1" value="3" type="radio" selected="0" label="">

<styles pos_x="140" pos_y="35"/>

</input>

<input group="group1" value ="2" type="radio" selected="0" label="">

<styles pos_x="160" pos_y="35"/>

</input>

<input group="group1" value="1" type="radio" selected="0" label="">

<styles pos_x="180" pos_y="35"/>

</input>

<input group="group2" value ="4" type="radio" selected="1" label="">

<styles pos_x="120" pos_y="50"/>

</input>

<input group="group2" value="3" type="radio" selected="0" label="">

<styles pos_x="140" pos_y="50"/>

</input>

<input group="group2" value ="2" type="radio" selected="0" label="">

<styles pos_x="160" pos_y="50"/>

</input>

<input group="group2" value="1" type="radio" selected="0" label="">

<styles pos_x="180" pos_y="50"/>

</input>

Advertising