Hey,
Let's take a look at this bean structure for example:
public class Abean {
private Bbean b;
}
public class Bbean {
private ArrayList<Cbean> c;
}
public class Cbean {
private ArrayList<Dbean> d;
}
public class Dbean {
....
}
So basically Abean containts everything. Now I want to make JSPs for all of these beans, where for example, the user can tell how many CBean he/she wants in BBean. So my problem is that I want to show a form for all the "child" instances automatically, for example: on d.jsp I want to show a form for every Dbean inside the Cbeans.
I've tried to embed h:dataTable-s, didn't have any success. Any help or thought will be appreciated. I hope my explanation was clear.
Thanks in advance, Daniel