Error in web page code
Error in web page code
Stephane
Posts: 1Questions: 0Answers: 0
Hi,
There is an error in html code in page: http://datatables.net/release-datatables/extras/TableTools/pdf_message.html
Missing "," before "print" in the original code.
Best regards,
[code]
$(document).ready( function () {
$('#example').dataTable( {
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
"aButtons": [
"copy",
"csv",
"xls",
{
"sExtends": "pdf",
"sPdfOrientation": "landscape",
"sPdfMessage": "Your custom message would go here."
}, <---- MISSING "," HERE IN ORIGINAL CODE
"print"
]
}
} );
} );
[/code]
There is an error in html code in page: http://datatables.net/release-datatables/extras/TableTools/pdf_message.html
Missing "," before "print" in the original code.
Best regards,
[code]
$(document).ready( function () {
$('#example').dataTable( {
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
"aButtons": [
"copy",
"csv",
"xls",
{
"sExtends": "pdf",
"sPdfOrientation": "landscape",
"sPdfMessage": "Your custom message would go here."
}, <---- MISSING "," HERE IN ORIGINAL CODE
"print"
]
}
} );
} );
[/code]
This discussion has been closed.