searchPanes completly invisible

searchPanes completly invisible

kringelkringel Posts: 16Questions: 9Answers: 0
edited November 2020 in Free community support

Hello.
I am trying to set up searchPanes but I am getting invisible sorting options like in the screenshot below. Also, when I select one of the options, search works fine and it definitely sorts my table.

Here's my table js code

    var table = $('#users').DataTable( {
        buttons:[
            {
                extend: 'searchPanes',

            }
        ],
        dom: 'Bfrtip',
        ajax: 'php/table.users.php',
        columns: [
            {
                "data": "name"
            },
            {
                "data": "web"
            },
            {
                "data": "activity"
            },
            {
                "data": "number"
            },
            {
                "data": "email"
            },
            {
                "data": "tag"
            },
            {
                "data": "info"
            }
        ],
        select: true,
        lengthChange: false,
        scrollX: true
    } );

Thanks in advance!

This question has an accepted answers - jump to answer

Answers

This discussion has been closed.