validationBypassFunctions

The validationBypassFunctions property identifies one or more event handlers (JSF handler functions), each associated with a button control in the JSP. Each function name is separated from the next by a comma.

If you specify an event handler in this context, the EGL runtime skips input-field and page validations when the user clicks the button or hypertext link related to the event handler. This property is useful for reserving a user action that ends the current JSF handler processing and that immediately transfers control to another web resource.

Example

The following example shows the property in the context of a JSF Handler part:

Handler  handler01  type JSFHandler
        { validationBypassFunctions=[endProcessing, returnToHome] }

  Function endProcessing()
  ...
  end
   
  Function returnToHome()
  ...
  end
end

Compatibility

Table 1. Support for validationBypassFunctions property
Data item JSF handler VGUI record Console UI Text Form Java™ Text Form COBOL Print Form Java Print Form COBOL
Yes Yes No No No No No No

Feedback