Re: Struts2, collection of objects and JSP

2008-02-07 Thread Piotr Falenczyk
newton.dave wrote: > > Piotr Falenczyk <[EMAIL PROTECTED]> wrote: >> I need to display all the names of Imports, and allow to edit every one >> of >> them in one page. What I do now is somethin like that ion JSP. Displaying >> values work just fine, but I canno't change them (not stored back in

Re: Struts2, collection of objects and JSP

2008-02-07 Thread Dave Newton
Piotr Falenczyk <[EMAIL PROTECTED]> wrote: > I need to display all the names of Imports, and allow to edit every one of > them in one page. What I do now is somethin like that ion JSP. Displaying > values work just fine, but I canno't change them (not stored back in the > session) > > > > >

Struts2, collection of objects and JSP

2008-02-07 Thread Piotr Falenczyk
Hello I have a following problem I have an action defined, let's say: public class SomeAction extends ActionSupport implements SessionAware{ private Map sessionMap; @Override public String execute() throws Exception { return SUCCESS; } public