New Button for Excel

New Button for Excel

emgwebsitesemgwebsites Posts: 2Questions: 1Answers: 0

I have been using the following script for a couple of weeks – all of a sudden today - the excel button is gone. Does anyone know of any issues or am I doing something wrong?

$(document).ready(function() {
$('#plistmealCL').dataTable( {
responsive: true,
"order": [[ 1, "desc" ]],
"pageLength": 20,
"oLanguage": {
"sSearch": "Filter: "
},
dom: 'Bfrtip',
buttons: [
'copy', 'print', 'pdf', 'csv', 'excel'
]
} );
} );

Answers

  • emgwebsitesemgwebsites Posts: 2Questions: 1Answers: 0
    edited September 2015

    I actually found the answer... Using two browsers as I develop – Firefox showing excel button; Safari isn't.

This discussion has been closed.