HI, I'm new to Spring. I have question about form tag library. I want to create jsp page with dynamic created form. In this form will be many form:select tags. Please look at this example (it's not a valid java code, only some idea):
my question is, how should I set path value, and how must my bean class looks to bind data from this form. Is it possible?Code:<form:form name="?" method="post"> <c:forEach items="${items}" var="item"> <form:select path="?"> <form:options items="${item.value}" /> </form:select> </c:forEach> </form:form>


Reply With Quote
. Could you write or send me link (I can't find it) how I can handle such form (get data from it, after submit)?
