TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Guest User
Tech Writer
189
25k
Internal Server Error
May 11 2018 3:18 AM
$(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
'<a class="popup btn btn-info text-center" href="/ClientProduct/EditProduct/'
+ data +
'">Edit</a>'
;
}
},
{
"data"
:
"CLProductId"
,
'bSortable'
:
false
,
'aTargets'
: -1,
"width"
:
"50px"
,
"render"
:
function
(data) {
return
'<a class="popup btn btn-danger text-center" href="/ClientProduct/DeleteProduct/'
+ data +
'">Delete</a>'
;
}
}
]
});
})
Reply
Answers (
2
)
How to create loader in html
how to fix div on css3