Re: Submit not passing the form input to the action

2010-04-29 Thread Dale Newfield
On 4/29/10 2:13 PM, Kartik Kumar wrote: @Nikhil No action form used as I am using Struts2. Each row has a submit button. Each row should have it's own form. -Dale - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org F

Re: Submit not passing the form input to the action

2010-04-29 Thread Kartik Kumar
@Nikhil No action form used as I am using Struts2. Each row has a submit button. 2010/4/29 निखिल वाळवेकर > Can you please also provide ActionForm details ? > > Is your page like this? (I am not aware abt struts 2 tags) > > > ... > > > > > >

Re: Submit not passing the form input to the action

2010-04-29 Thread निखिल वाळवेकर
Can you please also provide ActionForm details ? Is your page like this? (I am not aware abt struts 2 tags) ... ** * *

Re: Submit not passing the form input to the action

2010-04-29 Thread Jyothi Rajesh
Not sure about struts 2, but in struts 1.3, there will need to be a collection object in the action form and this will need to be instantiated while declaring. And there needed to be getters and setters for the entire collection as well as inidiviual members with index.

Re: Submit not passing the form input to the action

2010-04-28 Thread Kartik Kumar
Hi Martin, Thanks for replying. I loked at I am iterating through the collection to display some the items as follows: There is a submit button for every row. I want to update the va

RE: Submit not passing the form input to the action

2010-04-28 Thread Martin Gainty
the list attribute defined is the variable bound from the action as seen here with a bound Collection variable called availableItems public abstract class AbstractCRUDAction extends ActionSupport { private Collection availableItems; the hidden field needs a value attribute and a id att