Standardize option for DataTables

This commit is contained in:
Eric A. Miller
2014-06-19 21:33:51 -04:00
parent 22a446f144
commit e1250011cf
25 changed files with 124 additions and 32 deletions

View File

@@ -20,8 +20,12 @@
<script>
$(document).ready(function() {
$('#rg-data-table').dataTable({
"processing": true,
"stateSave": true,
"pageLength": 25,
"stateSave": true
"language": {
"search": 'Filter records: '
}
} );
} );
</script>