google_forms/application/views/templates/footer.php

23 lines
796 B
PHP
Raw Normal View History

2024-07-23 12:54:27 +00:00
<!-- <script>
2024-07-19 10:46:18 +00:00
$(document).ready(function(){
2024-07-22 09:49:37 +00:00
$('#basetable1').DataTable({
// "pagingType": "full_numbers"
});
2024-07-19 10:46:18 +00:00
});
2024-07-23 12:54:27 +00:00
</script> -->
<script>
$('#basetable1').DataTable({
"pagingType": "full_numbers", // Full pagination controls
"lengthMenu": [10, 25, 50], // Options for number of rows per page
"language": {
"search": "Filter records:", // Custom search label
"lengthMenu": "Show _MENU_ entries" // Custom length menu label
},
"columnDefs": [
{ "orderable": false, "targets": 2 } // Disable sorting for the "View" column (index 2)
],
"order": [[1, "desc"]] // Default sort by "Filled At" column (index 1) in descending order
});
2024-07-22 09:49:37 +00:00
</script>