handle_checkbox

one of the documented procedures in this installation of the ACS
Usage:
handle_checkbox   column   list_of_vals   items   defaults
What it does:
Helper proc to make-form that makes a checkbox for an add page
Defined in: /web/philip/tcl/prototype-defs.tcl

Source code:


    set form_html "<td>"
    set count 0
    foreach val $list_of_vals {
        if {[lsearch -exact $defaults $val] != -1} {
            append form_html  "<input name=$column checked value=\\\"$val\\\" type=checkbox>[lindex $items $count] \n"  
        } else {
            append form_html "<input name=$column value=\\\"$val\\\" type=checkbox>[lindex $items $count] \n"    
        }
        incr count 
    } 
    append form_html "</td>\n" 
    return $form_html


philg@mit.edu