Datatable Excel Export not working in ie10?

Datatable Excel Export not working in ie10?

cmrazakcmrazak Posts: 1Questions: 1Answers: 0

The print is working but Excel is not working in ie10, Tested ok in Chrome.
My code for Config:

var table = $('#resultTables').DataTable({
dom: 'Blrtip',
"lengthMenu": [[20, 50, 100, -1], [20, 50, 100, "All"]],
"ordering": false,
"language": {
"url": "ArabicUCS.json"
},
buttons: [
{
extend: 'print',
text: 'P'

                    },
                    {
                        extend: 'excel',
                        text: 'E'
                    }
                ]
            });

Answers

  • allanallan Posts: 63,791Questions: 1Answers: 10,513 Site admin

    Do the examples on this site work for you in IE10? They should (since they work for me!).

    Assuming they don' please link to a page showing the issue so it can be debugged.

    Allan

This discussion has been closed.