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?
DataTables requires jQuery to be included. https://datatables.net/manual/installation
of course, thank you, but still the buttons are not there (page buttons)
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.
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
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(); } );
$(document).ready(function() {
$('#example').DataTable();
} );
Great, thanks
It looks like you're new here. If you want to get involved, click one of these buttons!
Replies
DataTables requires jQuery to be included.
https://datatables.net/manual/installation
of course, thank you, but still the buttons are not there (page buttons)
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.
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
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();
} );
Great, thanks