template::form::get_combined_values (public)

 template::form::get_combined_values id [ args... ]

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

Return a list which represents the result of getting combined values from multiple form elements

Parameters:
id (required)
The form identifier
Returns:
The combined list of values

Testcases:
No testcase defined.
Source code:
    get_reference

    set exp [join $args "|"]
    set values [list]

    foreach element_name $properties(element_names) {
        if { [regexp $exp $element_name match] } {
            lappend values {*}[template::element get_values $id $element_name]
        }
    }

    return $values
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: