Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

112
Views
Set Global number format on all jquery dataTables

I have around 100 jquery datatables, all tables contain numeric columns with different order, some of them are int some are float, i want to set the global function which configure the dataTable set numeric format and should be apply on all datatables , the targets columns are different for every table

$.extend($.fn.dataTable.defaults, {        
        "columnDefs": [{
            "targets": [0,1,3],
            render: $.fn.dataTable.render.number(',', '.', 0)
        }]
    });

for int (1234) = 1,234 and for float 1234.00 = 1,234.00

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

do these changes in code, code is in separate js file.

   $.extend($.fn.dataTable.defaults, {
    "columnDefs": [{
        targets: '_all',        
        render: function (data, type, full, meta) {           

            if (Number.isInteger(data)) {
                return data.toLocaleString('en-US', { maximumFractionDigits: 0, minimumFractionDigits: 0 });
            } else if (isNaN(parseInt(data))) {  
                return data;
            } else {
                return data.toLocaleString('en-US', { maximumFractionDigits: 2, minimumFractionDigits: 2 });
            }
        }
    }]
});
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!