-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path_serviceOutcomeTargets.gsp
71 lines (66 loc) · 3.4 KB
/
_serviceOutcomeTargets.gsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!-- ko with:details.serviceOutcomes -->
<h4 class="header-with-help">${title ?: "Project services and outcome targets"}</h4><g:if test="${titleHelpText}"> <fc:iconHelp>${titleHelpText}</fc:iconHelp></g:if>
<table class="table service-outcomes-targets">
<thead>
<tr>
<th class="index"></th>
<th class="required service">${serviceName ?: "Project Service"}</th>
<th class="required score">${targetMeasureHeading ?: 'Target measure'}</th>
<th></th>
</tr>
</thead>
<tbody data-bind="foreach : outcomeTargets">
<tr class="service-target">
<td class="index"><span data-bind="text:$index()+1"></span></td>
<td class="service">
<input readonly="readonly" class="form-control form-control-sm"
data-bind="value:serviceLabel, disable: $root.isProjectDetailsLocked()"
>
</td>
<td class="score">
<input readonly="readonly" class="form-control form-control-sm"
data-bind="value:scoreLabel, disable: $root.isProjectDetailsLocked()"
>
</td>
<td>
<!-- ko if:orphaned -->
<input type="text" value="" class="hidden-validation-holder" data-validation-engine="validate[required]" data-errormessage="This target is associated with a service not referenced elsewhere in the MERI plan">
<i data-bind="click:$parent.removeOutcomeTarget" class="fa fa-remove"></i>
<!-- /ko -->
</td>
</tr>
<tr>
<td class="index"></td>
<th>${projectOutcomesHeading ?: 'Project Outcome/s'}</th>
<th>${targetHeading ?: 'Target'}</th>
<th></th>
</tr>
<!-- ko foreach:outcomeTargets -->
<tr class="outcome-target">
<td class="index"></td>
<td class="service">
<!-- ko if:orphanedOutcomes().length > 0 -->
<input type="text" value="" class="hidden-validation-holder" data-bind="attr:{'data-errormessage':orphanedOutcomesError()}" data-validation-engine="validate[required]">
<!-- /ko -->
<select multiple class="form-control form-control-sm" data-bind="options:availableOutcomes, multiSelect2:{value:relatedOutcomes, templateResult:$root.renderOutcome, tags:false}, disable: $root.isProjectDetailsLocked()">
</select>
</td>
<td class="score"><input type="number" class="form-control form-control-sm" data-bind="value:target, disable: $root.isProjectDetailsLocked()" data-validation-engine="validate[required,min[validate[min[0.01]]"></td>
<td>
<span data-bind="if:!$root.isProjectDetailsLocked()">
<i class="fa fa-remove" data-bind="click:$parent.removeOutcomeTarget, disable: $root.isProjectDetailsLocked()"></i>
</span>
</td>
</tr>
<!-- /ko -->
<tr>
<td colspan="4">
<button class="btn btn-sm" data-bind="click:addOutcomeTarget, disable: $root.isProjectDetailsLocked()"><i class="fa fa-plus"></i>Add outcome target</button>
<!-- ko if:availableOutcomes().length > 0 -->
<input type="text" value="" class="hidden-validation-holder" data-validation-engine="validate[required]" data-errormessage="There are outcomes related to this service that do not have a target assigned. Press 'Add Outcome Target' to specify a target">
<!-- /ko -->
</td>
</tr>
</tbody>
</table>
<!-- /ko -->