我需要隐藏某些单元格,具体取决于行中第二个单元格的值。我有一个单元格模板,在函数中传入了ng-hide。问题是{{row.getProperty(\'occupied \')}}直到ng-grid完成加载并且之前发生了函数之后才会呈现。我可以使用ng-grid回调函数吗?
$scope.hideInactive = function (checkSpot) {
if (checkSpot == 'Inactive') {
return true
} else {
return false
}
};
<div>
<span ng-hide="hideInactive({{row.getProperty(\'occupied\')}})">
{{row.entity[col.field]}}
</span>
</div>