TableTools multirow select

TableTools multirow select

funkypeoplefunkypeople Posts: 1Questions: 0Answers: 0
edited March 2014 in TableTools
var oTable = $('#tableau'+name).dataTable({

"sPaginationType": "full_numbers",
"bPaginate": true,
"bLengthChange": true,
"bFilter": true,
"bSort": true,
"bInfo": true,
"bAutoWidth": true ,
"oLanguage": {"sUrl" : "FR.txt"},
"bjQueryUI": true,
"bRetrieve": true,

"sDom": 'T-C<"clear">lfrtip',
"oTableTools": {
"sRowSelect": "multi",
"sSwfPath": "../swf/copy_csv_xls_pdf.swf",
"aButtons": [
{
"sExtends": "text",
"sButtonText": "Supprimer",
"sAjaxUrl" : "../test.php",
"fnClick": function ( nButton, oConfig) {
}
},

{
"sExtends": "select_all",
"sFileName": "Tout sélectionner",
},
{
"sExtends": "select_none",
"sFileName": "Tout déselectionner"
}
]

}
} );


good evening
I have a problem I use a multirow select on my datatable. I created a button to delete the select lines. I would like to retrieve the table of Selected lines POST and retrieve the file test.php but I can not do.
sorry for my english :-) and thank you for your help.
[code]
var oTable = $('#tableau'+name).dataTable({

"sPaginationType": "full_numbers",
"bPaginate": true,
"bLengthChange": true,
"bFilter": true,
"bSort": true,
"bInfo": true,
"bAutoWidth": true ,
"oLanguage": {"sUrl" : "FR.txt"},
"bjQueryUI": true,
"bRetrieve": true,

"sDom": 'T-C<"clear">lfrtip',
"oTableTools": {
"sRowSelect": "multi",
"sSwfPath": "../swf/copy_csv_xls_pdf.swf",
"aButtons": [
{
"sExtends": "text",
"sButtonText": "Supprimer",
"sAjaxUrl" : "../test.php",
"fnClick": function ( nButton, oConfig) {

}
},

{
"sExtends": "select_all",
"sFileName": "Tout sélectionner",
},
{
"sExtends": "select_none",
"sFileName": "Tout déselectionner"
}
]

}
} );
[code]
This discussion has been closed.