Message popup onclikc to excel button

Message popup onclikc to excel button

felichinofelichino Posts: 4Questions: 1Answers: 0
edited May 2022 in Free community support

hi
I implement excel download feature using this code:

function myFunction() {
        $('#tenderListTable').DataTable({
            "paging": true,
            "lengthChange": true,
            "searching": true,
            "ordering": true,
            "info": true,
            "autoWidth": false,
            language: { url: '//cdn.datatables.net/plug-ins/1.11.4/i18n/ru.json' },
            dom: 'lBfrtip',     
            buttons: ['excel']
        });
    }

I need pop up message or some loader on click to excel button, cause it takes several minutes for the system to create an excel file.

Edited by Colin - Syntax highlighting. Details on how to highlight code using markdown can be found in this guide.

Replies

  • colincolin Posts: 15,240Questions: 1Answers: 2,599

    This thread should help, it's asking the same thing.

    Cheers,

    Colin

Sign In or Register to comment.