Is it Possible to use Export Buttons With SearchPane & Plfrtip

Is it Possible to use Export Buttons With SearchPane & Plfrtip

ntzz123ntzz123 Posts: 2Questions: 2Answers: 0

That's my table , and i wanna know if is it possible to use the export buttons with this table using searchPanes and "dom:Plfrtip"

    <script>
        $(document).ready(function() {

            $('#table').DataTable({

                searchPanes: {
                    columns: [2],
                    cascadePanes: true,
                    viewTotal: true,

                },
                dom: 'Plfrtip',
                language: {
                    searchPanes: {
                        count: '{total} found',
                        countFiltered: '{shown} / {total}'
                    }
                },

                "order": [
                    [1, "desc"],
                    [3, "desc"],
                ],
                "pageLength": 10,
                "deferRender": true,

            });
        });
    </script>

This question has an accepted answers - jump to answer

Answers

This discussion has been closed.