nothing happens when I click the buttons

nothing happens when I click the buttons

uibobituibobit Posts: 2Questions: 0Answers: 0
edited October 2011 in TableTools
Hi,

I'm having a problem because when I click anything but Print, nothing happens. In IE 9, there's at least a little button animation as part of the click, but in FF I don't even get that.

Here's my document.ready function:
[code]
$(document).ready(function() {
$("#userresults").dataTable({
"sPaginationType": "full_numbers",
"aoColumnDefs": [
{ "sTitle": "Last Name", "sWidth": "100pt", "aTargets": [0]},
{ "sTitle": "First Name", "sWidth": "20%", "aTargets": [1]},
{ "sTitle": "Full Name", "sWidth": "60%", "aTargets": [2]}
],
"bJQueryUI": true,
"sDom": 'T<"clear">lfrtip'

});

});
[/code]

Based on user input, I dynamically add data to an array, then set the array as the table source:
[code]
$("#userresults").dataTable().fnAddData(myArray);
[/code]
And that is working great in Datatables. I can see the buttons and they are picking up the jqueryui theme.

I'd like to be able to dump the table to cvs, but clicking the buttons just doesn't do anything. Using the examples on this site, the buttons work, so it shouldn't be a problem with by Flash 11 x64 install on my computer. It's got to be something I've done wrong, but I've copied and pasted directly from the examples. Do I need to explicitly add the path to the swf? And if so, should I use an absolute path from the html root, "/myfolder/myapp/tabletools/media/swf/copy_cvs_xls_pdf.swf" or relative from the page "./tabletools/media/swf/copy_cvs_xls_pdf.swf"?

Thanks for any help you can give me,

bob
This discussion has been closed.