Remove the css
Remove the css
tanmaydeveloper
Posts: 1Questions: 1Answers: 0
Hi
am new in Datatables
I have created table by using
var table = $('#myCoupon').DataTable({
"ajax": "../DataText/Coupons.txt",
"columns": [
{
"class": 'details-control sorting_asc',
"orderable": false,
"data": null,
"defaultContent": ''
},
{ "data": "CouponAllocationId" },
{ "data": "AllocatedValue" },
{ "data": "CouponCode" },
{ "data": "AllocatedUserRoleId" },
{ "data": "EndDate" },
{ "data": "Status" }
],
"order": [[1, 'asc']]
});
it is working fine
Please help me to remove the css 'details-control' from the 'td' of the row(tr) which contains status as 'Active' or 'Expired'
need help in urgent
This discussion has been closed.