Difference between process and immediate

Asked

Viewed 1,624 times

1

in JSF, what is the difference between immediate and process attributes? In my view both seem to have similar functions.

1 answer

5


Well, according to the documentation from Primefaces 6.0:

The attribute immediate has its value default = false and your type is boolean. Its function is to determine at which stage of the JSF component will be processed if attribute value is true the action will be processed in the apply_request_values, if it’s false shall be processed at the invoke_application.

The attribute process has its value default = null and your type is String. Its function is to make JSF "skip" the processing of all components that are not covered by the attribute process.

  • It is interesting to note that the process attribute can do several different actions , among them this, all, None,Parent, form, all preceded by arroba, each for a different kind of need.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.