I am newbie for DataTables. I want to add button on each row for edit and delete(like below image)
var table =$('#example').DataTable( { data: yourdata , columns: [ { data: "id" }, { data: "name" }, { data: "parent" }, { data: "date" }, {data: "id" , render : function ( data, type, row, meta ) { return type === 'display' ? '' : data; }}, ], } }