Edit/Delete Button row wise

Edit/Delete Button row wise

Hi

   I am trying to display Edit & Delete Button nut it is not working

  1. $(document).ready(function () {  
  2.         $('#tblDesignat').DataTable({  
  3.             "searching": true,  
  4.             "ordering": true,  
  5.             "pagingType": "full_numbers",  
  6.             "ajax":
  7.             {
  8.                 url: "/Design/getDesign",
  9.                 type:"Get",
  10.             },
  11.             "columns": [  
  12.                 { "data": "Id" },  
  13.                 { "data": "Name" },
  14.                 {
  15.                     "mData": null,
  16.                     "sClass": "center",
  17.                     "sDefaultContent": '<a href="">Edit</a> / <a href="" onclick="removeRow();">Delete</a>'
  18.                 }
  19.                 
  20.             ],

  21.         });  
  22.     });  

  23. Thanks