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

Object mapping plugin for KnockoutJS

Results 83 knockout.mapping issues
Sort by recently updated
recently updated
newest added

ko.mapping is undefined. Worked fine on 3.4.0

## Problem description Updating a viewModel with a computed property from propertyA and propertyA at the same time ensures that either one will be fetched from the cache and it...

I've created an observable called "ChosenName" and this is present in my input data. I then bind this to a drop down which uses the optionsCaption markup. Now when using...

I'm trying to use ko.mapping to map a mix-typed array, then I found the result is very weird. For example, following code: ```javascript ko.mapping.fromJS([1,2,3,'3'])() ``` Will get: ```javascript ["3", 2,...

https://github.com/knockout/knockout/issues/1895

…/issues/215 check that lookup key doesn't step on Object.prototype

First of all this plugin completely rocks... thank you. I have a complex JSON array that contains the sub-object pasted below, note that it has a value of "watch" for...

Hey there, thank you for mapping! I've been a fanboy from the beginning. I just read through the code and found "arrayChanged" which does exactly what I needed when mapping....

Hi devs, It looks like the 'observe' mapping doesn't work quite well for objects which contain sub-object. Here is a sample: ``` javascript // Working scenario var data = {...

Hi, I'm having trouble mapping json data to my viewModel when the data doesn't contain all the properties defined in the viewModel. Basically I want to reload saved data from...