1
我有一個DataTable(15年1月10日)Datatables。保持選定的行提交後
<script th:inline="javascript">
$(document).ready(function() {
$('#deviceEventTable').dataTable({
"order": [[ 0, "desc" ]],
"bLengthChange": false,
"bStateSave": true,
"pageLength": 20,
});
$('#deviceEventTable tbody').on('click', 'td', function() {
$(this).closest("tr").toggleClass('selected');
});
});
</script>
一個Thymeleaf模板我也有這個表中定義
<tr th:each="deviceEvent : ${deviceEvents}" onclick="javascript:document.getElementById('deviceEventFormId').submit();" >
將有可能保持他選擇行提交後?
可以創建一個隱藏的輸入來存儲行?從代碼提交該行到隱藏的輸入...也許?只是想出來的框。 –