How to change _TOTAL_ separator ?
How to change _TOTAL_ separator ?
demonstenes
Posts: 2Questions: 0Answers: 0
Hi, first of all - Datatables is the best plugin ever !
But I canot find a solution to one problem - the default formating of _TOTAL_ field has a comma as a separator - for example 1,394. How can I change it to display value without comma (1394 or 1 394)?
But I canot find a solution to one problem - the default formating of _TOTAL_ field has a comma as a separator - for example 1,394. How can I change it to display value without comma (1394 or 1 394)?
This discussion has been closed.
Replies
Allan
[code]
$(document).ready(function() {
jQuery.fn.dataTableExt.oPagination.iFullNumbersShowPages = 5;
$('#myTable').dataTable( {
"aoColumnDefs": [
{ "sType": "html", "aTargets": [ 0 ] }
],
"sPaginationType": "full_numbers",
"sDom": '<"top"flp>rt<"bottom"<"clear">ip',
"oLanguage": {
"sLengthMenu": "Poka? _MENU_ rekord
Allan