Is there any possible fix to the below code where I face cyclic dependency using Knockout.js subscribe.
this.observable1.subscribe(function(value){
self.observable2("someValue");
});
this.observable2.subscribe(function(value){
self.observable1("someValue");
});
Where "self" is an alias to "this" and observable1 linked to combo box, and observable2 linked to date picker.
Kindly suggest