Forum OpenACS Q&A: Re: Newbie Question - AdForm - Pulling from DB to Create a List

Do you mean checkbox, where a user can select either or both, or radio, where a user can select either but not both? If a checkbox, you will need to handle a potential multi-part response. If it's a radio, here's an example:
form create entry

element create entry draft_p -label "Post Status" -datatype text -widget radio -options { { "Draft" "t" } { "Publish" "f" } }