HI,
I have a question. I want to user the iterate tag like:
<logic:iterate id="ente" name="projektForm" property="enten" >
<bean:write name="ente" property="name"/>
<bean:write name="ente" property="beschreibung"/>
????? <bean:write name="ente" property="code"/> here the
property code is an other bean
</logic:iterate>
The Beans-Code:
public class Entity(){
private Code code;
private String name;
publich Entity(){}
public String getName(){ return name; }
public Code getCode(){ return code; }
.....
}
public class Code(){
private String name;
publich Code(){}
public String getName(){ return name; }
.......
}
How can I do this?
Thanks
Claudia
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]