Hello i have a little problem with the iterate tag and checkbox i have a collection of some beans: private aBean{ String id; //+ getter and Setter }
The collection is in another bean private colBean{ Hashtable col; //+ getter and setter } the bean is posted in the session under "scopeVar" Now i want to iiterate over the collection and show every aBean in the jsp page like follows works <logic-el:iterate collection="${scopeVar.col}" id="thebean" indexId="index"> <c:out value="${thebean.id}"/> </logic-el:iterate> now i want to show it as an checkbox and save the values in a formBean private formBean extends ActionForm{ private String selection; //+Getter and Setter } but how do i do this? following doesnt work <logic-el:iterate collection="${scopeVar.col}" id="thebean" indexId="index"> <html-el:checkbox name="selection" property="id" indexed="true"/> <c:out value="${thebean.id}"/> </logic-el:iterate> can anyone help me please? Thx for any help Michael --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]