Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for jet101

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" …

Member Avatar for Watashi
0
1K
Member Avatar for Watashi

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" …

Member Avatar for nohup
0
140

The End.