dp_select_yn

one of the documented procedures in this installation of the ACS
Usage:
dp_select_yn   varname
What it does:
Create a pulldown menu with the options Yes and No for $varname. Will use dp_select to set the default value
Defined in: /web/philip/tcl/data-pipeline-defs.tcl

Source code:


    upvar dp_select dp_select
    return "<SELECT NAME=$varname>
[dp_optionlist $varname [list "" Yes No] [list "" Y N]]
</SELECT>"


philg@mit.edu