Include custom directives on DTColumnBuilder renderwidth

自古美人都是妖i 提交于 2019-11-29 16:30:15

You can $compile the cell content in the createdCell callback. Here is a very simple example, with a directive that does nothing but coloring the text red. Sorry for not using arrow functions :)

$scope.data = [
     { reportStructureName : "structurename1" },
     { reportStructureName : "structurename2" },
     { reportStructureName : "structurename3" },
     { reportStructureName : "structurename4" }
]

$scope.dtOptions = DTOptionsBuilder.newOptions()
    .withOption('data', $scope.data)
    .withPaginationType('full_numbers');

$scope.dtColumns = [       
   DTColumnBuilder.newColumn('reportStructureName')
    .withTitle('Structure Name')
    .renderWith(function(data, type, full) {
       return "<my-directive>"+data+"</my-directive>"; 
    })      
    .withOption('createdCell', function(td, cellData, rowData, row, col) {
       $compile( td )( $scope ); //<--- here
    })  
]    

Directive :

.directive('myDirective', function() {
  return {
    restrict: 'AE',
    link: function (scope, element, attr, ctrl) {
       angular.element(element).css('color', 'red')
    }   
  }
})

demo -> http://plnkr.co/edit/aok6SyWZlLaQv8UsEVIf?p=preview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!