Commit ee365524 by Ari Agung Prasetiyo Committed by pbbm2

penyesuain sort ketetapan, realisasi, sisa & % (2)

1 parent 4699c0a0
......@@ -424,7 +424,7 @@
"columnDefs": [
{ className: 'text-center', width: "50px", targets: [0] },
{ className: 'text-left', targets: [1] },
{ className: 'text-right', width: "100px", targets: [2, 3, 4, 5] }
{ className: 'text-right', width: "100px", targets: [2, 3, 4, 5], render: $.fn.dataTable.render.number('.', ',', 0, '')}
]
}
);
......@@ -444,9 +444,9 @@
table.row.add([
row.kode,
row.nama,
row.target.toLocaleString("id-ID"),
row.realisasi.toLocaleString("id-ID"),
row.sisa.toLocaleString("id-ID"),
row.target,
row.realisasi,
row.sisa,
row.persen.toFixed(2)
]);
sum_target += row.target;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!