zaxeer schrieb:
Hi devs,
thanks for your replies
i am already doing some thing like this in pageBeginRender
public void pageBeginRender(PageEvent event) {
if (event.getRequestCycle().isRewinding()) {
return;
}
if(getUSERINFO () == null){
set
Hi devs,
thanks for your replies
i am already doing some thing like this in pageBeginRender
public void pageBeginRender(PageEvent event) {
if (event.getRequestCycle().isRewinding()) {
return;
}
if(getUSERINFO () == null){
setUSERINFO (n
Similarly, I use an @InitialValue annotation to set it to a function
call, like this:
@InitialValue("myDefault")
public abstract String getFoo();
public String getMyDefault() { return "Hello"; }
-Norman Franke
ASD, Inc.
On Oct 29, 2007, at 11:53 AM, Andreas Andreou wrote:
Well, you can ini
Well, you can initialize it to a non-null value during pageBeginRender
On 10/29/07, zaxeer <[EMAIL PROTECTED]> wrote:
>
> hi devs,
>
> I have a from which contains some fields: Whole form is reterived by a bean
> class say USERINFO if i persist this USERINFO getter setter in session,
>
> @Persist