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 (required)
- The identifier of the form containing the element.
- element_id (required)
- The unique identifier of the element.
- property (required)
- 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):
- Testcases:
- No testcase defined.
Source code: get_reference if { ![info exists element($property)] } { return "" } else { return $element($property) }XQL Not present: Generic, PostgreSQL, Oracle