Skip to content

Instantly share code, notes, and snippets.

@Klerith
Created October 16, 2014 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Klerith/aa1f82753f1340871282 to your computer and use it in GitHub Desktop.
Save Klerith/aa1f82753f1340871282 to your computer and use it in GitHub Desktop.
DataTable: Initialization
$('#dynamic-table').dataTable( {
"aaSorting": [[ 0, "desc" ]],
"oLanguage":{
"infoFiltered": "(filtered from _MAX_ total records)",
"sProcessing": "Procesando...",
"sLengthMenu": "Mostrar _MENU_ registros",
"sZeroRecords": "No se encontraron resultados",
"sEmptyTable": "Ningún dato disponible en esta tabla",
"sInfo": "Mostrando registros del _START_ al _END_ de un total de _TOTAL_ registros",
"sInfoEmpty": "Mostrando registros del 0 al 0 de un total de 0 registros",
"sInfoFiltered": "(filtrado de un total de _MAX_ registros)",
"sInfoPostFix": "",
"sSearch": "Buscar:",
"sUrl": "",
"sInfoThousands": ",",
"sLoadingRecords": "Cargando...",
"oPaginate": {
"sFirst": "Primero",
"sLast": "Último",
"sNext": "Siguiente",
"sPrevious": "Anterior"
},
"oAria": {
"sSortAscending": ": Activar para ordenar la columna de manera ascendente",
"sSortDescending": ": Activar para ordenar la columna de manera descendente"
}
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment