You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling fromJS to amend an existing model with an ObservableArray fails with an "Out of Stack Trace" exception. This has been traced back to the merge call in fromJS which in turn calls extendObject.
Example:
var model = function () {
var Checkboxes = ko.mapping.fromJS({
Funds: []
});
return ko.mapping.fromJS({
Checkboxes: Checkboxes
});
}();
ko.mapping.fromJS({ Funds: [{ t: 15 }] }, model.Checkboxes);
The text was updated successfully, but these errors were encountered:
Hi,
Calling fromJS to amend an existing model with an ObservableArray fails with an "Out of Stack Trace" exception. This has been traced back to the merge call in fromJS which in turn calls extendObject.
Example:
The text was updated successfully, but these errors were encountered: