The Data table sorting arrow image is not shown to my table.
How to fix this problem?
How did you initialize the Datatable? Any code to show? If we see code maybe we can tell want is going on. In general all you need is
$(document).ready(function() { $('#example').DataTable(); } );
this should give all columns sort icons. Also make sure you have included something like
<link rel="stylesheet" type="text/css" href="DataTables/datatables.min.css"/> <script type="text/javascript" src="DataTables/datatables.min.js"></script>
in your html file <head> tag
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
How to fix this problem?
How did you initialize the Datatable? Any code to show? If we see code maybe we can tell want is going on. In general all you need is
this should give all columns sort icons. Also make sure you have included something like
in your html file <head> tag