Loading Search Panes...
Loading Search Panes...
didcomsergio
Posts: 15Questions: 4Answers: 0
Below the search panes it apears the "loading search panes" messages, what this mean and how i can remove it?
Also dont if its related but when option its selected of the panes doesnt work at all.
This question has an accepted answers - jump to answer
Answers
Check the browser's console for errors. Let us know what you find.
Kevin
hi kevin, i try to get an error but nothing appers.
Whats else can i do?
Post a link to a test case please. I've not seen that issue before, so it would need to be debugged.
Allan
where can i make the test case? @allan
https://datatables.net/forums/discussion/12899/post-test-cases-when-asking-for-help-please-read#latest
couldnt replicate the problem, i can share my js code:
https://live.datatables.net/wanoyiri/1/edit?js
I took the relevant part of your code to create this test case:
https://live.datatables.net/muweboze/1/edit
I used the Download Builder to generate the proper libraries and provided an HTML table. Also changed the
columns.data
to match the data structure used.Looks like the problem is with
dom: 'PB<"clear">Plfrtip',
. Note you haveP
listed twice. It looks like the firstP
instance is created then overwritten with the second which does not completely initialize causing theLoading Search Panes...
to appear. Remove theP
that you don't want and the SearchPanes will work, for exampledom: 'PB<"clear">lfrtip',
which is the config used in my test case.Kevin
thank you all!