jQuery DataTables with Bootstrap design seems to work fine, no problem. But when I try to use ColVis with it, it breaks everything.
I tried minimal CSS, different JavaScript files from ColVis that didn't fix it. Weird
However, what is my CSS / Javascript with screenshots that I used:
http://pastebin.com/F83sthP7
Any suggestion how to fix it?
CSS
<link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="//cdn.datatables.net/plug-ins/1.10.7/integration/bootstrap/3/dataTables.bootstrap.css"> <link href="//cdn.datatables.net/colvis/1.1.0/css/dataTables.colVis.css" rel="stylesheet">
JavaScript:
<script type="text/javascript" language="javascript" src="//code.jquery.com/jquery-1.10.2.min.js"></script> <script type="text/javascript" language="javascript" src="//cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js"></script> <script type="text/javascript" language="javascript" src="//cdn.datatables.net/plug-ins/1.10.7/integration/bootstrap/3/dataTables.bootstrap.js"></script> <script type="text/javascript" language="javascript" src="https://www.datatables.net/release-datatables/extensions/ColVis/js/dataTables.colVis.js"></script> <script type="text/javascript" charset="utf-8"> $(document).ready(function() { $('#example').DataTable( { dom: 'C<"clear">lfrtip' } ); } ); </script>
Screenshots:
![Screenshot 1]](https://fooobar.com//img/2ed12a73e132b8a42783c53774e6e6a9.png)

source share