Multiple Configuration Issue

Multiple Configuration Issue

alamphearalamphear Posts: 2Questions: 0Answers: 0
edited October 2013 in General
Hello all!
I seem to have a problem going on. When I try and add multiple configuration it seems to break my table.
eg.
[code]
$(document).ready(function() {
$('.table').dataTable( {
"sPaginationType": "bootstrap"
"sDom": "fti"
"iDisplayLength": 5
} );
} );
[/code]

It will just break. But if i just take out 2 of the 3 it works. only 1 configuration will work.

Is there something I am doing wrong?

Any help will do. Thanks in advance!

Replies

  • adinaadleradinaadler Posts: 6Questions: 0Answers: 0
    You need commas after each item when there's more than one.

    "sPaginationType": "bootstrap",
  • alamphearalamphear Posts: 2Questions: 0Answers: 0
    omg! i can't believe i overlooked that! wow! i feel so dumb.

    Thank you so much!
This discussion has been closed.