JSFiddle - React, Tailwind, and code Playground
by j3210938120
JavaScript
var table = $('#live_table').DataTable( {
"ajax": {
url: "/someUrl",
dataSrc: ""
},
columnDefs: [
{
targets: 0,
"type": "num"
}
],
columns: [
{
data: "name",
"render": function ( data, type, row, meta ) {
return "<div>"+data+"</div>"
//return "<div>"+parseFloat(data)+"</div>"
}
}
]
})