Disable column sorting not working for multiple angularjs datatables

后端 未结 2 893
说谎
说谎 2021-01-21 03:49

I am working with multiple angularjs data tables and generating a new table every time user selects an option from the drop down list.Based on the user\'s selection i make an $h

2条回答
  •  [愿得一人]
    2021-01-21 04:24

    Try using square brackets inside the dtColumnDefspush like

    $scope.x.dtColumnDefs.push(DTColumnDefBuilder.newColumnDef([i]).notSortable()); 
    

提交回复
热议问题