I have a table using the datatables plugin.
I am trying to make the table title corrected and follow this link: here
$('.device-table').DataTable( { "fixedHeader": { header: true, }, "bLengthChange": false, "Filter": false, "Info": false, } );
I do not see the effect.
I have included both js files with datatables and fixedHeader:
<script src="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script> <script src="https://cdn.datatables.net/fixedheader/3.1.2/js/dataTables.fixedHeader.min.js" type="text/javascript"></script>
Question
How would I do this and debug this?
I open any offers at this moment.
Any tips / suggestions / help on this would be greatly appreciated!
source share