From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

"processing": true
,"stateSave": true
,"pageLength": [% settings.table_pagesize | none %]
,"lengthMenu": [% table_showrecordsmenu | none %]
,"dom": '<"top"l<"nd_datatables-pager"p>f>rit<"bottom"><"clear">'
,"language": {
"search": '_INPUT_'
,"searchPlaceholder": 'Filter records...'
,"lengthMenu": "Show _MENU_ records."
,"info": "&nbsp;Showing _START_ to _END_ of _TOTAL_"
,"infoFiltered": "(filtered from _MAX_ total)"
,"infoEmpty": "&nbsp;No matching entries"
}
,"stateSaveParams": function (settings, data) {
// make sure filter is never saved
data.search.search = "";
// make sure paging position is not saved
data.start = 0;
[% IF is_custom_report %]
// disable sorting for custom reports
data.order = "";
[% END %]
}