EnVisageOnline/Main/Source/EnVisage/Content/templates/ActivityCalendar/teamUnallocatedNumbersRow.html

16 lines
831 B
HTML

<tr ng-if="ecTeamRow.Initialized" ng-show="ecTeamRow.Show" class="row-with-buttons">
<td ng-repeat="header in (ViewModel.Header.Weeks) track by $index"
ng-if="header.Initialized"
ng-show="header.Show"
ng-class="ecTeamRow.CSSClass[$index]">
<a href="javascript.void(0)" editable-text="ecTeamRow.Cells[$index]" e-name="ColValue" e-ng-blur="onTxtBlur(this);" onshow="watchKeyInput(this)" buttons="no"
blur="submit" onbeforesave="checkTeamValueUnassigned(row, exp, ecTeamRow, $index, $data)" e-required
ng-if="ecTeamRow.EditableForecastWeeks[$index]">
{{ ecTeamRow.Cells[$index] || 0 | number:2 }}
</a>
<span ng-if="!ecTeamRow.EditableForecastWeeks[$index]">
{{ (ecTeamRow.Cells[$index] | number:2) }}
</span>
</td>
</tr>