Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

115
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda