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("session")
    public abstract USERINFO getUSERINFO ();
    public abstract void setUSERINFO (USERINFO USERINFO );

 it works ok. 

but if don't persist USERINFO in session , like this

    public abstract USERINFO getUSERINFO ();
    public abstract void setUSERINFO (USERINFO USERINFO );

on submitting form (@tacos:AjaxForm) the error occurs like 

"target is null for setProperty(null, "zip", 2)"

 (which is USERINFO.zip) i think main class object set to null on
submitting.

plz help me 
-- 
View this message in context: 
http://www.nabble.com/non-Session-Object-for-From-Submission-tf4712531.html#a13470271
Sent from the Tapestry - User mailing list archive at Nabble.com.

Reply via email to