How to Excel export as pure CSV

How to Excel export as pure CSV

ScyzorScyzor Posts: 19Questions: 5Answers: 0

I have created Excel button as follows:

                        "buttons": [
                            {
                                extend: 'excel',
                                text: '<img src="images/assets/CSV.png">',
                                filename: 'Logs',
                                extension: '.csv',
                                exportOptions: {
                                    stripHtml: false,
                                    modifier: {
                                        page: 'current'
                                    }
                                }
                            }
                        ],

but it will save file format as XLS/XML not CSV and when user will try to open in Excel will throw a security error.

This question has an accepted answers - jump to answer

Answers

This discussion has been closed.