Is there a way to execute an action when a page is loaded? (Using JSF 1.2 with ICEFACES)
Cheers.
|
|
Yes, just put the desired logic in the constructor of the bean associated with the JSF page.
Alternatively you can also make use of a bean method which is annotated with the
|
|||||
|
|
@PostConstruct is run ONCE in first when Bean Created. the solution is create a Unused property and Do your Action in Getter method of this property and add this property to your .xhtml file like this :
and in your bean code:
|
|||
|