Regarding TableTools

Regarding TableTools

jQuery_userjQuery_user Posts: 27Questions: 0Answers: 0
edited December 2010 in TableTools
Hello,

I am working on the TableTools. It works fine with firefox 3.6.12, but gives javascript error "Expected ';' " in IE 6. I double checked the code. Everything looks fine. Here is the code I am using.

[code]TableToolsInit.sSwfPath = ".../images/ZeroClipboard.swf";

/*
* Initialse DataTables, with no sorting on the 'details' column
*/
var oTable = $('#resultsTable').dataTable( {
"sDom": 'T<"clear">lfrtip',
"aLengthMenu": [[10, -1], [10, "All"]],
//"sDom": 'lift',
"aoColumnDefs": [
{ "bSortable": false, "aTargets": [ 0 ] }
],
"aaSorting": [[1, 'asc']]
});[/code]

Are there any IE 6 specific browser settings that I have to enable?

Is there a way to customize the tool bar, remove copy to clipboard, save as xls?

In my table, I have a hidden column, when I do "copy to clipboard" or "save as xls/csv", the hidden column is getting copied/saved. How to avoid the hidden columns. Print just works fine, without hidden columns.

Too many questions, sorry!

Thanks...
This discussion has been closed.