Checkbox

Eine Checkbox ausgeben.

Attribut Typ Erforderlich Beschreibung
checked boolean Nein Bestimmt, ob die Checkbox vorausgewählt ist.

Vorschau

Checkbox-Beispiel

Beispiel

<form name="extra"> <div align="center"> <table> <tr> <td> {input type="checkbox" name="test_checkbox" title="Checkbox" short="wenn gewünscht bitte aktivieren"} </td> </tr> </table> </div> </form> <script> {literal} function do_load() { } function do_unload() { window.parent.unload_extra(); } {/literal} </script>