20 lines
1.3 KiB
HTML
20 lines
1.3 KiB
HTML
<tr ng-if="row.Initialized" ng-show="row.Show">
|
|
<td ng-repeat="header in (ViewModel.Header.Weeks) track by $index"
|
|
ng-if="header.Initialized"
|
|
ng-show="header.Show"
|
|
ng-class="row.CSSClass[$index]"
|
|
style="height: 31px; {{ row.CSSStyle[$index] }}">
|
|
<a ng-if="!row.IsMaster && row.EditableForecastWeeks[$index] && !row.IsMultipleECs" href="javascript:void(0)" editable-text="row.Cells[$index]" e-name="ColValue" e-ng-blur="onTxtBlur(this);" onshow="watchKeyInput(this)" buttons="no"
|
|
blur="submit" onbeforesave="checkResourceValueTopPart(row, resourceRow, $index, $data)" e-required
|
|
ng-show="!ViewModel.DisplayMode.IsBarMode">
|
|
{{ row.Cells[$index] || 0 | number:2 }}
|
|
</a>
|
|
<div ng-if="!row.EditableForecastWeeks[$index] || row.IsMultipleECs" class="exp-cat-total tooltip-info"
|
|
ng-show="!ViewModel.DisplayMode.IsBarMode"
|
|
ng-attr-title='{{ row.IsMultipleECs ? "This resource is in more than one ECs/Project Roles. Please switch to \"Group by Project\" or \"Group by Team\" mode to edit" : "" }}'>
|
|
{{ (row.Cells[$index] | number:2) }}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!-- Project Parts -->
|
|
<tr ng-if="row.IsMaster && part.Initialized" ng-repeat="part in row.Children" grid-row templateUrl="{{part.Templates.Numbers}}" ng-init="row = part"></tr> |