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,

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

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 Kishore Senji
The easiest way is to make the "fvknList" as a form property and keep the form in session scope. ... ... ... If you don't like to keep the form in the session, you would have to follow one of the ways listed in http://wiki.apache.org/struts/StrutsCatalogLazyList Also take a look at

Problem with Actionform

2005-09-02 Thread OJAY78
HI, I have a Formbean from which I receive Data and put it in to my JSP site, this works fine. The data will be displayed in a table and two of the colums are input fields where the user should change the value. Here is a peace of my JSP <%=lineNo.intValue()+1%>