First time user need help
First time user need help
Tried to make my first test database using the: Getting started with DataTables: First steps, but failed sofar
Something is going wrong, but i did not see it:
Hopefully there is someone who can point me into the right direction:
You find my example right here: www.milscan.nl/DT-test1.html
TIA
Berend van der Hulst
Something is going wrong, but i did not see it:
Hopefully there is someone who can point me into the right direction:
You find my example right here: www.milscan.nl/DT-test1.html
TIA
Berend van der Hulst
This discussion has been closed.
Replies
You've got:
[code]
$('#example').dataTable();
[/code]
which is selecting the element with an ID of "example" (this is jQuery), but your table has an ID of "table_id":
[code]
[/code]
Just make the two sync up (i.e. change one to match the other) and it should spring into life.
Allan
Thanks, working now.
Berend