| Webgate Anywhere 4.1 - WebTML Tag-Referenz |
type="select|checkbox|radio"
<tml:script var="_options" expression="Wert 1 | 1, Wert 2 | 2"/>
Ein Listenfeld (Grösse wird per HTML-Attribut "size" bestimmt):
<tml:input type="select" options="{this._options}" name="Auswahl">size="5"</tml:input>
Ein Feld von Markierungskästchen:
<tml:input type="checkbox" options="{this._options}" name="Auswahl"/>
Ein Feld von Optionskästchen:
<tml:input type="radio" options="{this._options}" name="Auswahl"/>
| << type="number|date" | type="text|password|hidden" >> |