15 lines
809 B
HTML
15 lines
809 B
HTML
<tr ng-if="row.Initialized" ng-show="row.Show" class="ac-level-{{row.Level}}">
|
|
<td class="headcol1 headcol-week expCat ac-row-name" style="height: 31px;">
|
|
<div class="shortName ac-name">{{ row.Name }}</div>
|
|
</td>
|
|
<td class="ac-row-total">
|
|
<a ng-if="row.IsEditable && ViewModel.Visibility.ActualsEditable" href="javascript:void(0)" editable-text="row.TotalValue" e-name="ColValue" e-ng-blur="onTxtBlur(this);" onshow="watchKeyInput(this)" buttons="no"
|
|
blur="submit" onbeforesave="checkResourceActualsGrandTotalValue(row, $data)" e-required>
|
|
{{ (row.TotalValue || 0 | number:2) }}
|
|
</a>
|
|
<span ng-if="!row.IsEditable || !ViewModel.Visibility.ActualsEditable">
|
|
{{ (row.TotalValue || 0 | number:2) }}
|
|
</span>
|
|
</td>
|
|
</tr>
|