Edit/Delete Button row wise
Hi
I am trying to display Edit & Delete Button nut it is not working
- $(document).ready(function () {
- $('#tblDesignat').DataTable({
- "searching": true,
- "ordering": true,
- "pagingType": "full_numbers",
- "ajax":
- {
- url: "/Design/getDesign",
- type:"Get",
- },
- "columns": [
- { "data": "Id" },
- { "data": "Name" },
- {
- "mData": null,
- "sClass": "center",
- "sDefaultContent": '<a href="">Edit</a> / <a href="" onclick="removeRow();">Delete</a>'
- }
-
- ],
- });
- });
- Thanks