knockout.merge icon indicating copy to clipboard operation
knockout.merge copied to clipboard

Ability to create missing observables on a merge

Open IPWright83 opened this issue 9 years ago • 19 comments

If you take an object like:

{ 
   title: ko.observable("A")
}

and merge it with an object like:

{
   title: "A",
   value: "a"
}

Then the newly created value field won't be observable. It would be great if there was a way to add additional items as observables.

Would you be open to having a flag to do this?

IPWright83 avatar Aug 20 '15 08:08 IPWright83