
columns: [
{ data: 'id', name: 'id'},
{ data: 'DT_RowIndex', name: 'DT_RowIndex', "orderable":true, "ordeing":true, "searchable":true, "className" : "my_class"},
{
"className":'details-control',
"orderable":false,
"ordeing":false,
"searchable":false,
"data":null,
"defaultContent":''
},
DT_RowIndex is a computed column, thus searching and sorting are expected not to work when using it. Unless the value was fetched from the database too.
Most helpful comment
DT_RowIndex is a computed column, thus searching and sorting are expected not to work when using it. Unless the value was fetched from the database too.