InterviewSolution
Saved Bookmarks
| 1. |
What Is A View Scope? |
|
Answer» A view-STATE allocates a new viewScope when it enters. This scope may be referenced WITHIN the view-state to ASSIGN VARIABLES that should live for the duration of the state. This scope is USEFUL for manipulating objects over a series of requests from the same view. A view-state allocates a new viewScope when it enters. This scope may be referenced within the view-state to assign variables that should live for the duration of the state. This scope is useful for manipulating objects over a series of requests from the same view. |
|