Extend an entity to create a computed observable that requires a navigation property
- by Julianyus
I'm trying to extend an entity to create a computed observable that requires a navigation property:
app.domain.indicador = function () {
this.ValorMetaActual = ko.computed({
read: function () {
console.log(this.ValoresMeta); //navigation property: undefined
return 0;
},
deferEvaluation: true
}, this);
};
The problem is that when the observable is created, the navigation property does not yet exist.
What could I do to fix this?