Answers for "datatables sort function example"

1

order datatable

$(document).ready(function() {
    $('#example').DataTable( {
        "order": [[ 3, "desc" ]]
    } );
} );
Posted by: Guest on May-04-2021
1

sort datatable c#

Datatable.DefaultView.Sort = "Preferance ASC";
Posted by: Guest on February-19-2020

Browse Popular Code Answers by Language