No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
I have the same problem, but your solution didn't work Here is my code <form> <table border="1" align="center" valign="center"> <c:forEach var="row" items="${parcelas.rows}"> <form> <td> <input type="checkbox" name="id" value="${row.parcelaID}" > </td> </form> <td><c:out value="${row.parcelaID}"/></td> <td><c:out value="${row.parcelaVencimento}"/></td> <td ><c:out value="${row.parcelaValor}"/></td> <td><c:out value="${row.clienteID}"/></td> <tr></tr> </c:forEach> </table> <input type="submit" value="OK" /> </form> <c:forEach var="row" …
I can show the values in a database, with a checkbox, but can't retrieve rows I checked When I submit, the only response that I get is the first row, event that I have checked everyone Here my code <table border="1" align="center" valign="center"> <c:forEach var="row" items="${parcelas.rows}"> <form> <td> <input type="checkbox" …
The End.
Watashi