- $(document).ready(function () {
- //getting Error in this line
- var oTable = $('#myTable').DataTable({
- ajax: {
- type: 'Post',
- url:'@Url.Action("ClientProductList", "ClientMaster")',
- contentType: "application/json; charset=utf-8",
- datatype: 'json',
- },
- columns: [
- { data: 'CLProductId', autowidth: true },
- { data: 'ProductId', autowidth: true },
- { data: 'ProductName', autowidth: true },
- { data: 'ClientProductDetail', autowidth: true },
- { data: 'ParentProductId', autowidth: true },
- { data: 'Act_Date',autowidth: true },
- { data: 'Exp_Date', autowidth: true },
- {
- "data": "CLProductId", 'bSortable': false,
- 'aTargets': -1, "width": "50px", "render": function (data) {
- return ' + data + '">Edit';
- }
- },
- {
- "data": "CLProductId", 'bSortable': false,
- 'aTargets': -1, "width": "50px", "render": function (data) {
- return ' + data + '">Delete';
- }
- }
- ]
- });
- })
Loading

Guest UserPosted May 11, 2018, 7:02 AM