How to show the sort arrow image?

How to show the sort arrow image?

jtanaleonjtanaleon Posts: 2Questions: 1Answers: 0

The Data table sorting arrow image is not shown to my table.

Answers

  • jtanaleonjtanaleon Posts: 2Questions: 1Answers: 0

    How to fix this problem?

  • orionaseliteorionaselite Posts: 49Questions: 13Answers: 4

    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

This discussion has been closed.