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