您好,我試圖發送所有記錄在jQuery數據表中,當我點擊選擇所有(超鏈接)選項或我想要特定記錄在特定頁面(使用複選框)到服務器類但問題是,當我點擊表單提交按鈕即導出PDF只獲取當前頁面的記錄,即使在其他頁面中選擇的記錄在jQuery數據表格分頁如何在jQuery數據表分頁中選擇記錄
爲什麼在jQuery數據表的不同頁面選擇的記錄不是發送到java類
https://jsfiddle.net/4n5o3r3e/
<s:form id="downloadStudentDetailsForm" action="downloadStudentDetails" theme="css_xhtml" cssClass="form-horizontal">
<div class="dataTable_wrapper">
<table width="100%" class="table table-striped table-bordered table-hover" id="dataTS">
<thead>
<tr>
<th><a href="#" id="bas">Select all</a></th>
<th>Student Name</th>
<th>Parent Phone</th>
<th>Parent Email</th>
<th>ReferenceID</th>
</tr>
</thead>
<tbody>
<s:iterator value="studentRecords">
<tr>
<td><s:checkbox name="students" cssClass="case chkPassport" fieldValue="%{studentname+' '+phone+' '+email+' '+ref}" /></td>
<td><s:property value="studentname" /></td>
<td><s:property value="phone" /></td>
<td><s:property value="email"></td>
<td><s:property value="ref" /></td>
</tr>
</s:iterator>
</tbody>
</table>
</div>
<div class="col-xs-1 ">
<s:submit cssClass="btn btn-success" value="Export to Excel" id="exl" action="downloadStudentsListINExcel" />
</div>
<div class="col-xs-3 ">
<s:submit cssClass="btn btn-danger" value="Export to PDF" id="pdf" action="downloadStudentsListInPDF" />
</div> </s:form>
你能指定程序的期望行爲麼?請編輯第一段,因爲不可能得到你的意思。 – jakubbialkowski