7.3.2.7 Utilizzo dei Radio-Button nelle form
I Radio-Button sono utili quando
l’utente deve selezionare solo una
scelta da un insieme di opzioni.
I Radio-Button vengono
solitamente usati in gruppi. Tutti i
Radio-Button di un gruppo
devono avere lo stesso nome ma
valori di campo diversi.
Il testo in grassetto che definisce
un gruppo di cinque pulsanti,
nella tabella che segue, permette
all’utente di selezionare un unico
baudrate tra cinque possibilità.
Gli elementi Radio-Button sono
inseriti in una tabella 1x5 (si noti il
tag <TD>).
Il nome “RS485” è lo stesso per
tutti.
La figura precedente mostra la
pagina che viene visualizzata
quando l’utente seleziona
l’opzione 4800 e il baudrate
attuale è di 19200. La figura che
segue illustra invece il risultato.
Si noti come tutti i dati inviati con il
form appaiano nel campo URL del
browser. L’elemento ACTION è
GET.
7.3.2.7 Using Radio-Buttons inside a form
The Radio-Buttons are useful
when the user must select only
one choice from a set of options.
The Radio-Buttons are typically
used in groups. All the
Radio-Buttons in a group must
have the same name and must
contain different field values.
The boldface text for a group of
five buttons in the next table
allows the user to select a unique
baudrate in a range of five
possibilities.
The Radio-Buttons elements are
inserted in a table 1x5 (note the
<TD> tag).
The name “RS485” is the same for
all.
The above figure shows the page
displayed when the user selects
4800 baud and the current
baudrate is 19200. The next figure
displays the result.
Note how all the data submitted by
the form appear into the URL box
of the browser. The ACTION
element is GET.
34
Manuale WebGate - cod. +030220230 rel. 1.0 - 16.09.2003
Gruppo di cinque Radio-Button /
Group of five Radio-Buttons
………………………………
………………………………
<td colspan="5">
<div align="center">
<
input type="radio" name="RS485" value="?script:Baudrate485=1200"
>
</div>
</td>
<td>
<div align="center">
<
input type="radio" name="RS485" value="?script:Baudrate485=2400"
>
</div>
</td>
<td>
<div align="center">
<
input type="radio" name="RS485" value="?script:Baudrate485=4800"
>
</div>
</td>
<td>
<div align="center">
<
input type="radio" name="RS485" value="?script:Baudrate485=9600"
>
</div>
</td>
<td>
<div align="center">
<
input type="radio" name="RS485" value="?script:Baudrate485=19200"
>
</div>
</td>
………………………………
………………………………
Fig. 7.3.2.7.1
Fig. 7.3.2.7.2