|
Question : How can I make a input type radio in WML?!?
|
|
Hi,
is there a possibility to make a radio-item in WML? I mean these round things where you can click on... ;-)
Or if this is not possible, how can I do a selection then???
thanks
|
Answer : How can I make a input type radio in WML?!?
|
|
An input field like :-
Input please:<INPUT name="inp" ..../>
and then either "do"s (for two actions) or anchors :-
<do type="accept" label="LeftAction"> <go href="LeftButtom.asp" method="post" accept-charset="utf-8"> <postfield name="inp" value="$inp"/> </go> </do> <do type="options" label="RightAction"> <go href="RightButtom.asp" method="post" accept-charset="utf-8"> <postfield name="inp" value="$inp"/> </go> </do>
The other alternative, with a list, would be anchors :-
<anchor> <go href="First.asp" method="post" accept-charset="utf-8"> <postfield name="inp" value="$inp"/> </go> First Action </anchor>
<anchor> <go href="Second.asp" method="post" accept-charset="utf-8"> <postfield name="inp" value="$inp"/> </go> Second Action </anchor>
and so on.
HTH
|
|
|
|