Javascript Problem In TableTools
Javascript Problem In TableTools
dobulet302
Posts: 38Questions: 0Answers: 0
I am getting the following error in the ZeroClipboard.js file
this.movie.clearText is not a function (Line 279)
No idea what is causing this, my table renders however the only thing that does is the option to sort.
[code]
$(document).ready(function() {
$('#table').dataTable( {
"sDom": 'T<"clear">lfrtip',
"aaSorting": [[ 0, "desc" ]],
"bJQueryUI": true,
"sPaginationType": "full_numbers",
} );
} );
[/code]
this.movie.clearText is not a function (Line 279)
No idea what is causing this, my table renders however the only thing that does is the option to sort.
[code]
$(document).ready(function() {
$('#table').dataTable( {
"sDom": 'T<"clear">lfrtip',
"aaSorting": [[ 0, "desc" ]],
"bJQueryUI": true,
"sPaginationType": "full_numbers",
} );
} );
[/code]
This discussion has been closed.
Replies
I get the following error:
this.movie.clearText is not a function on Line 279.
The Print button works, however none of the export to csv/excel buttons work and when you click copy to clipboard, it will alert you how many rows were copied however the copying never happens.
Thanks
[code]
$(document).ready(function() {
TableToolsInit.sSwfPath="swf/ZeroClipboard.swf";
$('#table').dataTable( {
"bPaginate": false,
"bJQueryUI": true,
"sDom": '<"H"lTfr>t<"F"ip>'
} );
} );
[/code]
[code]//this.movie.clearText();[/code]
That fixed it for me! Yea!!!
Allan
Allan