• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to pass "id" to any method by means of <input type="checkbox"> and submit button?

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I'm new on struts and want to handle following problem:

I am listing all the invoice items via <logic:iterate> in my invoiceList.jsp. Beside each invoice line, there is a checkbox,
which I want to use as following: User clicks on any checkbox to select the appropriate invoice item beside it, and after clicking on the submit button at the bottom, the id of the selected invoice shoould be transferred to InvoiceEditAction.editInvoice() method.

But I get following error message unfortunately:
javax.servlet.ServletException: java.lang.NumberFormatException: For input string: ""
So I think the id can not be transferred at all.

Below you can find my invoiceList.jsp. Any help is appreciated.
<html>
<body>
<html:form action="invoiceEdit">

<table >
<tbody>
<tr>
<td></td>
<td>id</td>
<td>Invoice No</td>
<td>Date</td>
</tr>

<logic:iterate name="invoiceListForm" property="invoices" id="invoice">
<tr>
<td >
<input
type="checkbox"
value="<bean:write name="invoice" property="id"/>"
name="editInvoice">
</td>
<td><bean:write name="invoice" property="id" /></td>
<td><bean:write name="invoice" property="invoiceNo" /></td>
<td><bean:write name="invoice" property="date" /></td>
</tr>
</logic:iterate>
</tbody>
</table>

<html:button property="add"
onclick="location.href='invoiceEdit.do?do=addInvoice'">Add a new invoice
</html:button>

 

<html:button property="back"
onclick="location.href='default.do'">Back to menu
</html:button>

 

<%-- set the parameter for the dispatch action --%>
<html:hidden property="do" value="editInvoice" />

 

<html:submit>Update</html:submit>

</html:form>

</body>
</html>

 
roses are red, violets are blue. Some poems rhyme and some are a tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic