datatables

How to right align numeric data to right in dataTables


I am using dataTables plugin. I see that numeric data is not right aligned.

The plugin I used is from here: http://www.datatables.net/


Solution

  • In the columns definition you can use className:

    $("#tabDatos").dataTable({
      columns: [
        { data: "fecha" },    
        { data: "importe", className: "text-right" }
      ]
    });

    And define the css class "text-right" if you aren't using Bootstrap