셀 내 값이 1,2,0 또는 -N이 될 수있는 특별한 조건이 있습니다. 이 값에 따라 NG 그리드 셀의 배경색이 변경되어야합니다. 나는 plunker에숫자 셀 값을 기반으로 그리드 셀을 색으로 표시
http://plnkr.co/edit/tpl:FrTqqTNoY8BEfHs9bB0f?p=preview
그러나이이 작업을 수행 할 수있는 시도를 한 I GREEN 값이 크롬 불평하지 않았지만 1 또는 2 내가, 대부분의 아마 내 구문이 올바르지 않습니다 볼 수있는 경우에도 두 배 . 여기에 내 세포의 발췌 문장이 있습니다
$scope.gridHours = {
data : 'hours',
columnDefs : [
{field : 'caseId', displayName : 'Case ID'},
{field : 'EHStatus.TOPPER.code', displayName : 'TOPPER Status Code',cellTemplate: '<div class="ngCellText" ng-class="{\'green\' : row.getProperty(\'EHStatus.TOPPER.code\') == \'1\' ,\'red\' : row.getProperty(\'EHStatus.TOPPER.code\') == \'2\'}" >{{ row.getProperty(col.field) }}</div>'},
{field : 'EHStatus.SFT.code', displayName : 'SFT Status Code'},
{field : 'EHStatus.SPD.code', displayName : 'SPD Status Code'},
{field : 'EHStatus.RSC.code', displayName : 'RSC Status Code'}
],
enableColumnResize : true
};
올바른 plunker입니다. http://plnkr.co/edit/ojSNWiSXOOSUw8xhehp4?p=preview – user3799365