How do I assign a hyperlink on specific cells in my datatable? Please help
How do I assign a hyperlink on specific cells in my datatable? Please help
zcimocim
Posts: 1Questions: 1Answers: 0
table = $('#table').DataTable({
"processing": true,
"serverSide": true,
"order": [],
"ajax": {
"url": "<?php echo site_url('home/get_data')?>",
"type": "POST"
}
},
"columnDefs": [
{
"targets": [ -1 ],
"orderable": false,
},
],
});
This discussion has been closed.