you do not have permission to write to this location while creatin pdf or excel

you do not have permission to write to this location while creatin pdf or excel

adlyadly Posts: 2Questions: 2Answers: 0

I'm trying to create pdf file from a datatable but whenever i click on pdf button I get this error you do not have permission to write to this location

<script type="text/javascript">
        $(document).ready(function () {
            var table = $('#datatable').dataTable();
            var tableTools = new $.fn.dataTable.TableTools(table, {
                'aButtons': [
                    {
                        'sExtends': 'xls',
                        'sButtonText': 'Save to Excel',
                        'sFileName': 'Data.xls'
                    },
                    {
                        'sExtends': 'print',
                        'bShowAll': true,
                    },
                    {
                        'sExtends': 'pdf',
                        'bFooter': false
                    },
                    'copy',
                    'csv'
                ],
                'sSwfPath': 'js/copy_csv_xls_pdf.swf'
            });
            $(tableTools.fnContainer()).insertBefore('#datatable_wrapper');
        });
    </script>

Can anyone help please.

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 63,075Questions: 1Answers: 10,384 Site admin
    Answer ✓

    I would very strongly suggest you use Buttons rather than the legacy TableTools software. TableTools uses Flash exclusively and it sounds like you might be running into a Flash issue (although without a test case, which is required in the forum rules, it is impossible to say for sure).

    Allan

This discussion has been closed.