downloading default css

downloading default css

FicosFicos Posts: 88Questions: 22Answers: 0

I have build datatables.zip with the download builder.
The example I have build:
example
The layout is not what I have expected; I am looking for the default css file, like your examples.
Where can I find that file?

Replies

  • tangerinetangerine Posts: 3,365Questions: 39Answers: 395

    DataTables requires jQuery to be included.
    https://datatables.net/manual/installation

  • FicosFicos Posts: 88Questions: 22Answers: 0

    of course, thank you, but still the buttons are not there (page buttons)

  • bindridbindrid Posts: 730Questions: 0Answers: 119

    I took what you had and put it http://jsbin.com/mewoho/edit?html,output

    Updated the includes (bootstrap and datatables via cdn) and the buttons appeared.

  • FicosFicos Posts: 88Questions: 22Answers: 0

    Thank you.
    I can see it is working but the strange thing is that when I copy exactly your update to my website, the problem still occurs....
    example

  • bindridbindrid Posts: 730Questions: 0Answers: 119

    When you set up a jsbin, it forces you to put the javascript in on panel and html in another.

    In that code, just after the last include, you will see an empty script tag.

    Put this back in there
    $(document).ready(function() { $('#example').DataTable(); } );

  • FicosFicos Posts: 88Questions: 22Answers: 0

    Great, thanks

This discussion has been closed.