Re: checked attribute for a checkbox input

JP Massar <[email protected]> Thu, 18 Mar 2004 14:37:48 -0800
Newsgroups gmane.lisp.open-source.franz
Message-ID <[email protected]>
>
>I use a snippet like
>(NET.HTML.GENERATOR:HTML
>          ((:input :type "Checkbox"
>                   :name id
>                   :value aValue
>                   :if* (my-lisp-function aValue) :checked "CHECKED"
>                   )
>           (:princ aValue)
>           :newline
>           )
>          )

Is this (and anything else like it) documented somewhere?

A quick perusal of the Allegroserve tutorial and manual don't
reveal anything obviously relevant to this.