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

Reply via email to