JSF handler properties

In addition to the properties described in "Handler properties," you can use the following properties with a Handler part that has the JSFHandler stereotype:
Table 1. JSF handler properties
Property Description
cancelOnPageTransition Determines whether the page bean is removed from the session scope when the user's browser loads a new page.
msgResource Identifies a Java™ resource bundle or properties file that is used as a source for error messages.
onConstructionFunction Specifies a function within the JSF handler that runs when the page is first constructed (formerly onConstructionFunction).
onPostRenderFunction Specifies the name of a function that immediately after rendering the HTML in memory, but before displaying the page on the screen.
onPreRenderFunction Specifies the name of a function that refreshes page data before the page is rendered in memory.
scope Specifies the visibility of a page bean.
title Specifies a default page title when you are working in Page Designer.
validationBypassFunctions Identifies one or more event handlers for which no validation is to be performed.
validatorDataTable Identifies a DataTable part that provides comparisons for user input.
validatorFunction Identifies the JSF handler validator function, invoked after all the field validators are invoked.
validatorFunctionMsgKey Identifies a message that is displayed if the function specified in the validatorFunction property finds an error.
view Identifies the name and subdirectory path of the Java Server Page (JSP) that is bound to the JSF handler.
viewRootVar Specifies a UIViewRoot variable to represent the root of the JSF component tree for the page.

Feedback