Hi
1.I am using a multi action controller which loads a form
i need to load the form which has nested object eg
class parent{
int id
string name;
Child x;
Child y;
}
Class child{
string addr1;
}
2. I tried using sping:bind to bind the input fields in jsp to the object when i submit the form it goes to a multi action controller.
Problem is
1. i am not able to retrieve the values from nested object child in m jsp
2.when i submit the form it throws exception invalid child -null
is there any thing i need to include in cotroller to get nested values ?
thanks


Reply With Quote