STRUTS 2: fail to retrieve values without repost

2008-02-06 Thread Nushi
/package I get nothing, until I refresh my page, and then it fills my values. Thx in advance! Nushi -- View this message in context: http://www.nabble.com/STRUTS-2%3A-fail-to-retrieve-values-without-repost-tp15306729p15306729.html Sent from the Struts - User mailing list archive

Re: STRUTS 2: fail to retrieve values without repost

2008-02-06 Thread Nushi
/package I get nothing, until I refresh my page, and then it fills my values. Thx in advance! Nushi -- View this message in context: http://www.nabble.com/STRUTS-2%3A-fail-to-retrieve-values-without-repost-tp15306729p15306729.html Sent from the Struts - User mailing list archive at Nabble.com

Re: WW2.1.7 to S2: Most S2 tags fails to retrieve values

2008-01-03 Thread wwwclaes
in Struts territory. Anyone that can help me out? Thanks, Claes -- View this message in context: http://www.nabble.com/WW2.1.7-to-S2%3A-Most-S2-tags-fails-to-retrieve-values-tp14567668p14598569.html Sent from the Struts - User mailing list archive at Nabble.com

WW2.1.7 to S2: Most S2 tags fails to retrieve values

2008-01-01 Thread wwwclaes
though). I'm lost in Struts territory. Anyone that can help me out? Thanks, Claes -- View this message in context: http://www.nabble.com/WW2.1.7-to-S2%3A-Most-S2-tags-fails-to-retrieve-values-tp14567668p14567668.html Sent from the Struts - User mailing list archive at Nabble.com

Retrieve values

2006-06-07 Thread Maya menon
I tried storing vector values in a hidden field. input type=hidden name=data value=bean:write name=data scope=request// where data is a vector which I have set into the request type. Now how will I retrieve it ? Maya menon [EMAIL PROTECTED] wrote: Manoj, In the

Retrieve values

2006-06-07 Thread Maya menon
I tried storing vector values in a hidden field. input type=hidden name=data value=bean:write name=data scope=request// where data is a vector which I have set into the request type. Now how will I retrieve it ? Maya menon [EMAIL PROTECTED] wrote: Manoj, In the

RE: Retrieve values

2006-06-07 Thread manoj.tripathi
In the action where the form is submitted you call request.getAttributr(data) as the input hidden type's name is data -Original Message- From: Maya menon [mailto:[EMAIL PROTECTED] Sent: 07 June 2006 18:34 To: Struts Users Mailing List Subject: Retrieve values I tried storing vector

RE: Retrieve values

2006-06-07 Thread Maya menon
-Original Message- From: Maya menon [mailto:[EMAIL PROTECTED] Sent: 07 June 2006 18:34 To: Struts Users Mailing List Subject: Retrieve values I tried storing vector values in a hidden field. [input] / where data is a vector which I have set into the request type. Now how will I retrieve

RE: Retrieve values

2006-06-07 Thread Maya menon
[mailto:[EMAIL PROTECTED] Sent: 07 June 2006 18:34 To: Struts Users Mailing List Subject: Retrieve values I tried storing vector values in a hidden field. [input] / where data is a vector which I have set into the request type. Now how will I retrieve it ? Maya menon wrote: Manoj, In the vector

Re: Retrieve values

2006-06-07 Thread Michael Jouravlev
Struts does not serialize and deserialize complex objects for you. If you need to serialize vector into string and to deserialize it back you need to do it yourself. Another approach is to keep the vector in the session instead of sending it to client and then back to server. On 6/7/06, Maya