template::element::get_property (public)

 template::element::get_property form_id element_id property

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

Retrieves the specified property of the element, such as value, datatype, widget, etc.

Parameters:
form_id - The identifier of the form containing the element.
element_id - The unique identifier of the element.
property - The property to be retrieved
Returns:
The value of the property, or "" if the property does not exist
See Also:

Partial Call Graph (max 5 caller/called nodes):
%3 template::element::get_reference template::element::get_reference (private) template::element::get_property template::element::get_property template::element::get_property->template::element::get_reference

Testcases:
No testcase defined.
Source code:
    get_reference

    if { ![info exists element($property)] } {
        return ""
    } else {
        return $element($property)
    }
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: