0

データベースから取得したパラメータ値に従ってテーブルを動的に生成する Jsp に次のコードがあります。各行の横に編集ボタンを配置し、送信を押してフォームをサーブレットに送信したいと考えています。ただし、 a を a 内に配置できず、助けが必要です..コードは次のとおりです。

<table border="1">
                <tr>
                    <th>Customer Name</th>
                    <th>Customer Surname</th>
                    <th>Customer Email</th>
                    <th>Customer Adress</th>
                    <th>Customer Contact Details</th>


                </tr>

                <c:forEach items="${ccustomers}" var="customer" >

                    <tr>
                           <form  action="myController" method="POST">
                        <td><input value="${customer.customerName}" name="customerNameEdit"/></td>
                        <td><input value="${customer.customerSurname}" name="searchForCustomerSurName"/></td>
                        <td><input value="${customer.email}" name="customerEmailEdit"/></td>
                        <td><input value="${customer.adress}" name="customerAdressEdit"/></td>
                        <td><input value="${customer.phoneNumber}" name="customerPhoneEdit"/></td>
                        <input type="button" value="edit" onclick="this.form.submit()"/>
                        <input type="hidden" name="<%=WebParamsList.PARAM_PAGENAME%>" value="searchPage"/>
                        <input type="hidden" name="<%=WebParamsList.SEARCHCRITERIA%>" value="customers"/>
                        <input type="hidden" name="customerIdForEdit" value="${customer.customerId}"/>
                        <input type="hidden" name="<%=WebParamsList.RESULTPAGEPARAM%>" value="edit"/>
                      </form>
                </tr>

            </c:forEach>
        </table>
4

1 に答える 1

0

ボタンやその他の非表示フィールドをテーブルの最後の列に配置します。次のようになります。

<form  action="myController" method="POST">
<tr>
   <td><input value="${customer.customerName}" name="customerNameEdit"/></td>
   <td><input value="${customer.customerSurname}" name="searchForCustomerSurName"/></td>
   <td><input value="${customer.email}" name="customerEmailEdit"/></td>
   <td><input value="${customer.adress}" name="customerAdressEdit"/></td>
   <td><input value="${customer.phoneNumber}" name="customerPhoneEdit"/></td>
   <td>
       <input type="button" value="edit" onclick="this.form.submit()"/>
       <input type="hidden" name="<%=WebParamsList.PARAM_PAGENAME%>" value="searchPage"/>
       <input type="hidden" name="<%=WebParamsList.SEARCHCRITERIA%>" value="customers"/>
       <input type="hidden" name="customerIdForEdit" value="${customer.customerId}"/>
       <input type="hidden" name="<%=WebParamsList.RESULTPAGEPARAM%>" value="edit"/>
   </td>
</tr>
</form>
于 2013-07-30T23:31:31.410 に答える