errorMessageOn()
Description
Returns the error message, if one exists, on the object's property. If multiple error messages exist, the first one is returned.
Function Syntax
errorMessageOn(objectName, property [, prependText, appendText, wrapperElement, class ])
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
objectName |
string |
Yes | |
The variable name of the object to display the error message for. |
property |
string |
Yes | |
The name of the property to display the error message for. |
prependText |
string |
No | |
String to prepend to the error message. |
appendText |
string |
No | |
String to append to the error message. |
wrapperElement |
string |
No | span |
HTML element to wrap the error message in. |
class |
string |
No | errorMessage |
CSS class to set on the wrapper element. |
Examples
<!--- view code --->
<cfoutput>
#errorMessageOn(objectName="user", property="email")#
</cfoutput>
