Can't get DataTable to work properly or at all
Can't get DataTable to work properly or at all
debugger code ixakuk
I can not seem to be able to get DataTables to work properly
I am using Bootstrap 3 and PHP to create the website. It does not just show 10 items it shows the whole list. The search thing does not work at all.
I will give you a link to the website it is not live so you can't mess it up.
You also have to log in
http://notaryaccounting.com
username: rdkurth1
password: boat12345
then click on Expenses
that will bring up the page with the table on it
[code]
$(document).ready(function() {
$('#expencetable').dataTable( {
} );
} );
[/code]
I can not seem to be able to get DataTables to work properly
I am using Bootstrap 3 and PHP to create the website. It does not just show 10 items it shows the whole list. The search thing does not work at all.
I will give you a link to the website it is not live so you can't mess it up.
You also have to log in
http://notaryaccounting.com
username: rdkurth1
password: boat12345
then click on Expenses
that will bring up the page with the table on it
[code]
$(document).ready(function() {
$('#expencetable').dataTable( {
} );
} );
[/code]
This discussion has been closed.
Replies
[code]
[
$(document).ready( function () {
$('#expencetable').DataTable();
} );
[/code]
It would be nice to see this work so I can add some of the other stuff
Allan