0
Я хочу, когда при нажатии кнопки «Удалить» я получаю CustomerID
и отправлю в действие. Для выполнения функции delete.Как использовать тег дисплея со стойками 1?
<display:table name="sessionScope.CustomerForm.customers" id="row"
requestURI="/Customer.do" pagesize="15" style="text-align:center"
excludedParams="_chk" clearStatus="true">
<display:column title="checkkbox">
<input type="checkbox" onclick="selectCheckbox();" id="checkBox" />
</display:column>
<display:column style="width:500px" property="customerID"
title="Customer ID" sortable="true" paramId="customerID"
href="Edit.do">
</display:column>
<display:column style="width:300px" property="customerName"
title="Customer Name" sortable="true" />
<display:column style="width:300px" property="sex" title="Sex"
sortable="true" />
<display:column style="width:300px" property="birthday"
title="Birthday" sortable="true" />
<display:column style="width:300px" property="email" title="Email"
sortable="true" />
<display:column style="width:300px" property="address"
title="Address" sortable="true" />
</display:table>
</div>
<br>
<div>
<html:button styleClass="submit" property="Add new" value="Add New"></html:button>
<html:button styleClass="submit" property="Delete" value="Delete" ></html:button>
</div>
</html:form>
Что именно это ваш вопрос? – EWit