dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #40592
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 20607: tracker-capture: unique attribute detection is now also applied in custom forms
------------------------------------------------------------
revno: 20607
committer: Abyot Asalefew Gizaw <abyota@xxxxxxxxx>
branch nick: dhis2
timestamp: Fri 2015-10-09 17:14:42 +0200
message:
tracker-capture: unique attribute detection is now also applied in custom forms
modified:
dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/dhis2/dhis2.angular.services.js
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/dhis2/dhis2.angular.services.js'
--- dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/dhis2/dhis2.angular.services.js 2015-10-08 13:59:37 +0000
+++ dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/dhis2/dhis2.angular.services.js 2015-10-09 15:14:42 +0000
@@ -497,7 +497,10 @@
' element-id="' + i + '"' +
this.getAttributesAsString(attributes) +
' d2-focus-next-on-enter' +
- ' ng-model="selectedTei.' + attId + '" ' +
+ ' ng-model="selectedTei.' + attId + '" ' +
+ ' attribute-data="attributesById.' + attId + '" ' +
+ ' selected-program-id="selectedProgram.id" ' +
+ ' selected-tei-id="selectedTei.trackedEntityInstance" ' +
' ng-disabled="editingDisabled || isHidden(attributesById.' + attId + '.id) || ' + isTrackerAssociate + '"' +
' d2-validation ' +
' ng-required=" ' + (att.mandatory || att.unique) + '" ';