Found issue with the groups, corrected the binding, was assigning the entire object (data) to the groups observableArray rather than the groups property (data.Groups)

#99
This commit is contained in:
Chris.Watts90@outlook.com 2018-05-30 13:28:02 +01:00
parent 1f67b3c84e
commit 22712d7cd2

View File

@ -470,7 +470,7 @@
"IsContractor": false
});
self.getGroups(function(data) {
self.chosenUserDetails().Groups = data;
self.chosenUserDetails().Groups = data.Groups;
self.chosenUserDetails.valueHasMutated();
});
self.getUnassignedCardData();