How to disable initial Ordering of data in Angular Datatables?
问题 I am using angular datatables and I have only one column. When I bind it, the data comes in an ascneding order, while I want to display it in the order I recived it. Can someone please help. Controller : var vm = this; vm.dtOptions = DTOptionsBuilder.newOptions() .withButtons([ 'print', 'pdfHtml5', ]); vm.dtColumnDefs = [ DTColumnDefBuilder.newColumnDef(0).notSortable() ]; HTML : <div ng-controller="formViewController as frmView"> <table datatable="ng" dt-options="frmView.dtOptions" dt-column