template::form::get_properties (public)

 template::form::get_properties id

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

Get properties of a form

Parameters:
id - The ID of a form

Partial Call Graph (max 5 caller/called nodes):
%3 template::adp_level template::adp_level (public) template::form::get_properties template::form::get_properties template::form::get_properties->template::adp_level

Testcases:
No testcase defined.
Source code:
    # form properties
    upvar #[template::adp_level$id:properties formprop

    if { [info exists formprop] } {
        # properties exist in the form, return them
        return [array get formprop]
    } else {
        # no props exist in the form, return the empty list
        return [list]
    }
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: