datatables warning bpaginate false error
datatables warning bpaginate false error

Code
$(document).ready( function () {
$('#example').dataTable( {
"bPaginate": false
} );
} );
Error Details:Datatables warning table id=example Cannot reinitialise Datatable.For more information datatables.net/tn/3
I tried the solution proposal but it does not hide Help
This discussion has been closed.
Answers
What version of Datatables are you using?
Looks like you are using older versions of the commands to initialize Datatables. Take a look here:
https://datatables.net/manual/installation#Initialising-DataTables
Also you will probably want to use the current command to disable pagination:
paging
Kevin
! DataTables version: 1.10.13

/*! DataTables 1.10.13
* ©2008-2016 SpryMedia Ltd - datatables.net/license
*/
@kthorngren did not solve
The "paginate" thing is a red herring. Somewhere in your code you are trying to initialise DataTables more than once. You haven't provided enough of your code to assist third-party debugging. Have you checked your loading of scripts in your HTML?
@tangerine page only one datatable
->
head tags above style file
body tags js file (datatable.js,datatable.bootstrap.js )
3.party debugging?
Debugging by someone other than yourself.
It is not possible without seeing the code.
Agreed on all points. Without seeing your code we can only guess - that is why the forum rules specifically state that a test case should be provided.
Also, the error I quite clear and links to a tech note explaining the issue. You have an existing DataTable that is already initialised somewhere else. You are then attempting to initialise it again. That gives an error.
Initialise the table with all the options only once.
Allan