-
-
Notifications
You must be signed in to change notification settings - Fork 89
Open
Description
I use data: function(row)
and it works but sorting doesn't work.
Example:
const columns = [];
columns.push({
data: function(row) {
return row.id;
}
});
columns.push({
data: function(row) {
return row.name;
}
});
columns.push({
data: function(row) {
const elString = jsoperation.modal(row.json);
return elString;
}
});
$(document).ready(function () {
$('#example').dataTable({
"serverSide": true,
"ajax": "example",
"columns": columns
});
});
Metadata
Metadata
Assignees
Labels
No labels