column_form_error

one of the documented procedures in this installation of the ACS
Usage:
column_form_error   column
What it does:
Makes the forms to ask about which error-action type the user desires
Defined in: /web/philip/tcl/prototype-defs.tcl

Source code:


    set select_html "<tr align=right><th>$column:</th>\n"

    set form_var $column
    append form_var "_error_action"
    append select_html  "<td><input name=$form_var value=nothing checked type=radio>Do Nothing</td>\n"  
    append select_html  "<td><input name=$form_var value=complain type=radio>Return an Error</td>\n"  
    append select_html  "<td><input name=$form_var value=fixit type=radio>Set a Default</td>\n"  
    append select_html "</tr> " 
    return $select_html     


philg@mit.edu