ad_set_form_values (public)

 ad_set_form_values [ args... ]

Defined in packages/acs-tcl/tcl/form-processing-procs.tcl

Set multiple values in the current form.

Partial Call Graph (max 5 caller/called nodes):
%3 ad_set_element_value ad_set_element_value (private) ad_set_form_values ad_set_form_values ad_set_form_values->ad_set_element_value

Testcases:
No testcase defined.
Source code:
    foreach arg $args {
        if { [llength $arg] == 1 } {
            upvar $arg value
            ad_set_element_value -element $arg -- $value
        } else {
            set value [uplevel subst \{[lindex $arg 1]\}]
            ad_set_element_value -element [lindex $arg 0] -- $value
        }
    }
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: