Simple Datatable implementation
Simple Datatable implementation
johnsam
Posts: 17Questions: 0Answers: 0
Hi ,
I am new to datatable .Can anyone help to use it with JSP?
I am trying to call a txt file which contains JSON format:
{"sEcho":3,"iTotalRecords":10,"iTotalDisplayRecords":2,"aaData":[["1",0,0,"2",0]]}
My JSP page:
$(document).ready(function() {
$('#ProResults').dataTable( {
"bProcessing": true,
"bServerSide": true,
"aaSorting":[],
"sAjaxSource": "testJSON.txt"
} );
} );
The error i get is JSON data from server could not be parsed.
Any help appreciated.
Thanks,
I am new to datatable .Can anyone help to use it with JSP?
I am trying to call a txt file which contains JSON format:
{"sEcho":3,"iTotalRecords":10,"iTotalDisplayRecords":2,"aaData":[["1",0,0,"2",0]]}
My JSP page:
$(document).ready(function() {
$('#ProResults').dataTable( {
"bProcessing": true,
"bServerSide": true,
"aaSorting":[],
"sAjaxSource": "testJSON.txt"
} );
} );
The error i get is JSON data from server could not be parsed.
Any help appreciated.
Thanks,
This discussion has been closed.
Replies
Allan
Allan