String errorValue = null;
// See if we have an error value... Need to check even for fields without formatters -- they
// can have (page assigned) errors too...
if (_formatter != null || hasBinding(BindingNames.errorKey)) {
AWErrorManager errorManager = errorManager();
Object errorKey = errorKey();
Object errorObjValue =
(errorKey != null) ? errorManager.errantValueForKey(errorKey) : null;
if (errorObjValue instanceof String) {
errorValue = (String)errorObjValue;
}
else if (errorObjValue != null) {
try {