I am trying to do the following using dataTables. What I want is that the circle with the most appears in the first column and that when I click, I display the other data, as shown in the image.
I am following the steps of the dateTables example that I leave in the following link. link
I have referenced all these libraries but it does not show me the circle with the most.
<link rel="stylesheet" href="res/bootstrap/css/bootstrap.min.css"> <!-- Bootstrap 3.3.6 -->
<link rel="stylesheet" href="plugins/datatables/dataTables.bootstrap.min.css">
<link rel="stylesheet" href="plugins/datatables/responsive.bootstrap.min.css">
<script type="" src="plugins/jQuery/jquery-2.2.3.min.js"></script>
<script src="res/bootstrap/js/bootstrap.min.js"></script> <!-- datepicker -->
<script type="" src="plugins/datatables/jquery.dataTables.min.js"></script>
<script type="" src="plugins/datatables/dataTables.bootstrap.min.js"></script>
<script type="" src="plugins/datatables/dataTables.responsive.min.js"></script>
<script type="" src="plugins/datatables/responsive.bootstrap.min.js"></script>
//El JavaScript
<script type="text/javascript">
$(document).ready(function() {
$('#myTable').DataTable();
} );
</script>
Someone can tell me what I need or what I have wrong.