PrimeFaces provides a partial rendering and view processing feature based on standard JSF 2 APIs
to enable choosing what to process in JSF lifecyle and what to render in the end with ajax.
There are a couple of reserved keywords which serve as helpers.
-@this : Component that triggers the PPR is updated
-@parent: Parent of the PPR trigger is updated.
-@form: Encapsulating form of the PPR trigger is updated
-@none: PPR does not change the DOM with ajax response.
-@all: Whole document is updated as in non-ajax requests.
In Partial Page Rendering, only specified components are rendered, similarly in Partial Processing
only defined components are processed. Processing means executing Apply Request Values,
Process Validations, Update Model and Invoke Application JSF lifecycle phases only on defined
components.
Back to your problem, you should use process @form
Hope this could help you.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…