I'm trying to add TableTools by theme_datatable, it seems not working
$table = theme('datatable',array(
'header' => $colnames,
'rows' => $rows,
'sticky' => true ,
'attributes' => array(
'id' => 'my_table_id',
'datatable_options' => array(
'aLengthMenu' => array(array(25, 50, 75, -1), array(25, 50, 75, "All")),
'iDisplayLength' => 25,
'dom' => 'T<"clear">lfrtip',
'tableTools' => array(
'aButtons' => array('copy','xls','print'),
'sSwfPath' => base_path() . _datatables_get_path() . '/extras/TableTools/media/swf/copy_csv_xls_pdf.swf'
),
)
),
'empty'=>t('No apps found matching selected criteria'),
));
drupal_add_library('datatables', 'datatables-tabletools');
the views plugin, instead, work fine