想要从我的自定义cellTemplate访问一个函数。为此,我使用grid.appScope。以下是代码:
$scope.test = function(){
alert('a');
};
columnDefs: [
{ field: 'name', displayName: 'Name', cellTemplate: '<div ng-click="grid.appScope.test()">ABCDEFGH</div>' },
{ field: 'id', displayName: 'ID' }
]
有谁能告诉我上面的代码有什么问题?
答案 0 :(得分:4)
我遇到了同样的问题并能够解决它,在我的情况下,我们已经将网格作为指令,因为它无法识别测试功能。为了做到这一点,只需使用$ parent scope
像这样grid.appScope.$parent.test();