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

zcimocimzcimocim Posts: 1Questions: 1Answers: 0
edited December 2016 in Free community support
    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.