Re: Problem with Actionform

2005-09-02 Thread Kishore Senji
The easiest way is to make the fvknList as a form property and keep the form in session scope. table border=0 html:form action=/saveFVKNAction method=post nested:define id=fvknList property=fvknList/ nested:iterate property=fvknList id=line indexId=lineNo type=FormValueKeyName tr ...

Re: Problem with Actionform

2005-09-02 Thread Wendy Smoak
From: [EMAIL PROTECTED] So my Problem is that I want to save those two columns in my Database but I can not fill my ActionForm for this Action with these values. I get only the first row of the colum. In the ActionForm I have setter and getter for the property dispName and sortOrder. What

Re: Problem with Actionform

2005-09-02 Thread OJAY78
Thank you for your reply What type are those properties? String, String[], List, or something else? They type of the properties are String. See if this helps... indexed properties are not my specialty, but I think that's what you need: http://struts.apache.org/faqs/indexedprops.html

Re: Problem with Actionform

2005-09-02 Thread Wendy Smoak
From: [EMAIL PROTECTED] What type are those properties? String, String[], List, or something else? They type of the properties are String. I think it's safe to say that will have to change. :) If you want to store the entire column, you'll be submitting form fields named, for example,

validate data problem in ActionForm - combine with tiles

2005-06-23 Thread Grzegorz Stasica
hi, The problem is that after I validate values in the method, the controller forwards me to input page. Since I use tiles in my application I'd like to be forwarded to tiles definition not input page (I need to preserve header, menu etc). The question is: Is it possible to use validate

Re: validate data problem in ActionForm - combine with tiles

2005-06-23 Thread Michael Jouravlev
1) In action mapping: validate = false 2) Validate manually from Action class 3) Forward where you need. On 6/23/05, Grzegorz Stasica [EMAIL PROTECTED] wrote: hi, The problem is that after I validate values in the method, the controller forwards me to input page. Since I use tiles in my

Re: validate data problem in ActionForm - combine with tiles

2005-06-23 Thread Dave Newton
Michael Jouravlev wrote: 1) In action mapping: validate = false 2) Validate manually from Action class 3) Forward where you need. On 6/23/05, Grzegorz Stasica [EMAIL PROTECTED] wrote: hi, The problem is that after I validate values in the method, the controller forwards me to input page.

Re: validate data problem in ActionForm - combine with tiles

2005-06-23 Thread Wendy Smoak
From: Grzegorz Stasica [EMAIL PROTECTED] The problem is that after I validate values in the method, the controller forwards me to input page. Since I use tiles in my application I'd like to be forwarded to tiles definition not input page (I need to preserve header, menu etc). The