单击按钮更改表格列标题
<%@include file="/WEB-INF/jsp/include/pagedirectives.jsp"%>
<div style="background: #D6E8FF; padding: 10px;" class="advanced_search">
<%@include file="/WEB-INF/jsp/include/page.topmessagebox.jsp"%>
<table class="form" cellspacing="0" id="requestSubmissionEform">
<tbody>
<tr>
<td class="label"><b>Label</b></td>
<td class="label" align="left"><b>Form 1</b></td>
<td class="label" align="left"><b>Form 2</b></td>
<td class="label" align="left"><b>Form 3</b></td>
<td class="label" align="left"><b>Form 4</b></td>
<td class="label" align="left"><b>Form 5</b></td>
</tr>
<c:forEach items="${eformDetailsList}" var="eformDetails"
varStatus="status">
<tr id="serviceTypeWithEform">
<td class="label"><label for="${eformDetails.id}_0"><c:out
value="${eformDetails.label}" /></label> <input type="hidden"
id="label_${eformDetails.id}_0" value="${eformDetails.label}"
name="label_0"></input> <input type="hidden"
id="index_${eformDetails.id}_0" value="${eformDetails.id}"
name="index_0"></input></td>
<c:if test="${eformDetails.controlType==1}">
<td id="Col0" style="visibility: visible;"><input
id="eformDetail_${eformDetails.id}_0" class="eformDetail"
type="text" value="" name="form_0"></input></td>
<td id="Col1" style="visibility: visible;"><input
id="eformDetail_${eformDetails.id}_1" class="eformDetail"
type="text" value="" name="form_1"></input></td>
<td id="Col2" style="visibility: visible;"><input
id="eformDetail_${eformDetails.id}_2" class="eformDetail"
type="text" value="" name="form_2"></input></td>
<td id="Col3" style="visibility: visible;"><input
id="eformDetail_${eformDetails.id}_3" class="eformDetail"
type="text" value="" name="form_3"></input></td>
<td id="Col4" style="visibility: visible;"><input
id="eformDetail_${eformDetails.id}_4" class="eformDetail"
type="text" value="" name="form_4"></input></td>
</c:if>
</tr>
</c:forEach>
<c:if test="${empty eformDetailsList}">
<tr id="serviceTypeWithNoEform">
<td><b>There is no eform associated with this Service Type</b></td>
</tr>
</c:if>
</tbody>
</table>
此页面将有 2 个按钮(上一页和下一页)。单击“下一步”时,我想将列标题更改为 6、7、8、9、10 等形式,以便进一步单击。请帮忙!
<%@include file="/WEB-INF/jsp/include/pagedirectives.jsp"%>
<div style="background: #D6E8FF; padding: 10px;" class="advanced_search">
<%@include file="/WEB-INF/jsp/include/page.topmessagebox.jsp"%>
<table class="form" cellspacing="0" id="requestSubmissionEform">
<tbody>
<tr>
<td class="label"><b>Label</b></td>
<td class="label" align="left"><b>Form 1</b></td>
<td class="label" align="left"><b>Form 2</b></td>
<td class="label" align="left"><b>Form 3</b></td>
<td class="label" align="left"><b>Form 4</b></td>
<td class="label" align="left"><b>Form 5</b></td>
</tr>
<c:forEach items="${eformDetailsList}" var="eformDetails"
varStatus="status">
<tr id="serviceTypeWithEform">
<td class="label"><label for="${eformDetails.id}_0"><c:out
value="${eformDetails.label}" /></label> <input type="hidden"
id="label_${eformDetails.id}_0" value="${eformDetails.label}"
name="label_0"></input> <input type="hidden"
id="index_${eformDetails.id}_0" value="${eformDetails.id}"
name="index_0"></input></td>
<c:if test="${eformDetails.controlType==1}">
<td id="Col0" style="visibility: visible;"><input
id="eformDetail_${eformDetails.id}_0" class="eformDetail"
type="text" value="" name="form_0"></input></td>
<td id="Col1" style="visibility: visible;"><input
id="eformDetail_${eformDetails.id}_1" class="eformDetail"
type="text" value="" name="form_1"></input></td>
<td id="Col2" style="visibility: visible;"><input
id="eformDetail_${eformDetails.id}_2" class="eformDetail"
type="text" value="" name="form_2"></input></td>
<td id="Col3" style="visibility: visible;"><input
id="eformDetail_${eformDetails.id}_3" class="eformDetail"
type="text" value="" name="form_3"></input></td>
<td id="Col4" style="visibility: visible;"><input
id="eformDetail_${eformDetails.id}_4" class="eformDetail"
type="text" value="" name="form_4"></input></td>
</c:if>
</tr>
</c:forEach>
<c:if test="${empty eformDetailsList}">
<tr id="serviceTypeWithNoEform">
<td><b>There is no eform associated with this Service Type</b></td>
</tr>
</c:if>
</tbody>
</table>
this page will have 2 buttons (prev. and next). on click of next i want to change column headings to form 6,7,8,9,10 and so on for further clicks. please help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需根据当前页面动态打印它们,从页面索引 0 开始。按每一个下一个按钮,页面索引
就会增加 1。(请注意,表格标题单元格将由
,不是
)
Just print them dynamically depending on the current page, starting with page index 0. On every next button press increment the page index by 1.
(please note that table header cells are to be represented by
<th>
, not by<td>
)