如何在Struts 2中迁移<html:multibox>标记?

时间:2019-01-29 06:48:41

标签: java jsp checkbox struts2 struts-1

嗨,我的JSP中有这些多重框

<html:multibox property="selectedPDFSignatures" value="PDF_SIG" name="manageVPForm" onclick="setPdfChildSignatures(this)"/>
<html:multibox property="selectedPDFSignatures" value="PDF_SIG_TS" name="manageVPForm" onclick="setPdfChildSignatures(this)"/>
<html:multibox property="selectedPDFSignatures" value="PDF_SIG_TS_RI" name="manageVPForm" onclick="setPdfChildSignatures(this)"/>
<html:multibox property="selectedPDFSignatures" value="PDF_SIG_TS" name="manageVPForm" onclick="setPdfChildSignatures(this)"/>
<html:multibox property="selectedPDFSignatures" value="PDF_SIG_TS_RI" name="manageVPForm" onclick="setPdfChildSignatures(this)"/>

我做了这样的事情 第一个复选框

<s:iterator var="row" value="%{manageVPForm.selectedPDFSignatures}">
<input type="checkbox" name="manageVPForm.checked" value="${row.PDF_SIG}" <s:property value="%{manageVPForm.checked.contains(#row.PDF_SIG)?'checked='checked'':''}"/>/>    
</s:iterator>

但是它不能解决我的问题,能否请您告诉我如何迁移所有上述复选框? 我在stackoverflow上也看到了此Question,但对我不起作用

0 个答案:

没有答案