PDF and Excel download button not working in IE 11 , they are working in Chrome, firefox

PDF and Excel download button not working in IE 11 , they are working in Chrome, firefox

laxmiparklaxmipark Posts: 22Questions: 8Answers: 0
edited May 2018 in Free community support

This is part of the code.
Should I be doing something different.

dom: 'Bfrtip',
                        buttons: [
                            $.extend(true, {}, buttonCommon, {
                                extend: 'excelHtml5',
                                exportOptions: { columns: ':visible' }
                            }),
                            $.extend(true, {}, buttonCommon, {
                                extend: 'pdfHtml5',
                                exportOptions: { columns: ':visible' },
                                orientation: 'landscape',
                                pageSize: 'LEGAL'
                            }),                       
                        
                            $.extend(true, {}, buttonCommon, {
                                extend: 'print',
                                exportOptions: { columns: ':visible' },
                                orientation: 'landscape',
                                pageSize: 'LEGAL'

I have included "https://cdn.datatables.net/buttons/1.5.1/js/dataTables.buttons.min.js"

Thanks

Answers

  • colincolin Posts: 15,176Questions: 1Answers: 2,589

    Hi @laxmipark ,

    When you say it's not working in IE11, could you explain more, please? Does it give an error, does the button appear, does one button just not work, etc? It would also help if you could link to a live example.

    Cheers,

    Colin

  • laxmiparklaxmipark Posts: 22Questions: 8Answers: 0

    Hi Colin,

    Thanks for the response. I could figure out. why it isn't working.. because In IE we need to have Title for those buttons work.

  • colincolin Posts: 15,176Questions: 1Answers: 2,589

    Thanks for letting us know, that's good informtation

This discussion has been closed.