RE: update a complex object through struts2

2011-03-20 Thread Martin Gainty
;" does not work. MG>TaskStep needs to be an Action class..( a class that extends ActionSupport ) MG>status needs to be a Map located in TaskStep Action Class which will be used to populate values of the radio button > > > > > > > From: apachemav...@gmail.com > > >

Re: update a complex object through struts2

2011-03-20 Thread maven apache
atisfaire informez > l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci > est interdite. Ce message sert à l'information seulement et n'aura pas > n'importe quel effet légalement obligatoire. Étant donné que les email > peuvent facilement être sujets

Fwd: update a complex object through struts2

2011-03-20 Thread maven apache
-This post is orignal sent to Martin Gainty. It seems he maybe busy now,so I post it to the list and wonder if any other guys can do me a favor. --- -- Forwarded message -- From: maven apache Date: 2011/3/19 Subject: Re: update a complex object

Re: update a complex object through struts2

2011-03-18 Thread maven apache
Hi: I update my question and make a simple example, Please take a look this example:http://jsfiddle.net/mbwwg/ Suppose the name of the task is "Task1",it belog to Department2,and it own two tasksteps(step01 and step02). And the operators of step1 contain "jhon" and "bill",while the step02 contai

update a complex object through struts2

2011-03-17 Thread maven apache
Hi: I meet some problem when I use struts as the mvc framework in my app, They are the core classes: *Task{ private int id; private String name; private List steps; } TaskStep{ public int id; private String name; private Date startDate; private TaskStatus status; private List