Hi all! At the momen i use a work around in my jsp to access a collection in a FormBean which is hidden in the session context: <% pageContext.setAttribute("localList", ((MyForm) session.getAttribute("myForm")).getMyList());%> <form:select property="account" styleClass="ControlsCombo"> <form:options collection="localList" property="id" labelProperty="name"/> </form:select> Can somebody tell me a better way to do this? Looks like i have to use a RTExpr but i don't know how.... Thanks Andre
- Re: collection attribute in form:options tag Andre Wittenburg
- Re: collection attribute in form:options tag David Winterfeldt