This repository has been archived by the owner on Feb 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 124
objects not checked when options populated dynamically #33
Comments
I have the same issue here too. Is there a workaround? |
I have the same issue too, anybody is working on this item? |
Hi everybody, Working on this issue, my friend @bpena found a solution. In Here all
|
@Villanuevand thank you you have been save me a lot of time! |
@Villanuevand Thank you you are a life saver :) |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When the options are populated dynamically, the items are not checked.
quick fix is to add a markChecked(). Better is to modify parseModel
scope.$watch(function () {
return parsedResult.source(originalScope);
}, function (newVal) {
if (angular.isDefined(newVal))
parseModel();
markChecked(modelCtrl.$modelValue);
}, true);
The text was updated successfully, but these errors were encountered: