handle_edit_select

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

Source code:


    set form_html "<td><select name=$column>\n"
    append form_html "[ad_generic_optionlist $list_of_vals $items $defaults]"
    append form_html "</select></td>\n"
    return $form_html


philg@mit.edu