First time user need help

First time user need help

BerendBerend Posts: 4Questions: 0Answers: 0
edited September 2011 in General
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

Replies

  • allanallan Posts: 63,531Questions: 1Answers: 10,474 Site admin
    You are close! Very close!

    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
  • BerendBerend Posts: 4Questions: 0Answers: 0
    edited September 2011
    Allan,

    Thanks, working now.

    Berend
This discussion has been closed.