Include custom directives on DTColumnBuilder renderwidth

冷暖自知 提交于 2019-11-28 10:44:58

问题


Is there a way for DTColumnBuilder.newColumn.renderWidth to include custom directives? Here is a draft code of what I want to achieve.

DTColumnBuilder.newColumn('reportStructureName').withTitle('Structure Name')
    .renderWith((data, type, full) => {
          return "<my-directive></my-directive>"; 
     }),

回答1:


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



来源:https://stackoverflow.com/questions/43361762/include-custom-directives-on-dtcolumnbuilder-renderwidth

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