Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8190133
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T03:31:13+00:00 2026-06-07T03:31:13+00:00

Fiddle here I have an array of objects that I want to map directly

  • 0

Fiddle here

I have an array of objects that I want to map directly into a collection on my viewmodel, but I want to customise the mapping. The code doesn’t work though unless there is only one item in the data.UserReports collection.

I can do it if I add another layer into the object graph – so for instance instead of mapping data.UserReports to model.UserReports – if I had a property on the model called Foo – I could map data to foo and then access the collection via model.Foo.UserReports, but this is undesirable and messy.

I also reckon I can do it if i iterate through the data.UserReports array, and push each UserReport in turn onto the model’s collection – but again this seems clumsy.

So what’s wrong with the fiddle?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T03:31:14+00:00Added an answer on June 7, 2026 at 3:31 am

    The code in that fiddle is not working at all, at least not for me. But however, here is how you would normally use the mapping plugin with an existing view model instance:

    function PageModel() { /* ... */ }
    
    $(document).ready(function() {
        var model = new PageModel();
    
        // Don't replace some observable, but extend the view model automatically,
        // creating an observable for each property in "data".
        ko.mapping.fromJS(data, userReportMapping, model);
    
        ko.applyBindings(model);
    }​);​
    

    http://jsfiddle.net/Quu4f/27/


    Update: You also need to / should specify to which key in the data object the mapping options should be applied:

    var userReportMapping = {
       'UserReports': {
            key: function(data) {
                return ko.utils.unwrapObservable(data.Id);
            },
            create: function(options) {
                return new userReportModel(options.data);
            }
        }
    };
    

    It is however a bit weird that you get an error when you have two items with the same ID in the data set. It seems as if the “create” callback is not executed for the duplicate, but a normal observable is still created.

    http://jsfiddle.net/Quu4f/29/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created an array of jquery objects that I want to hide when
I have a fiddle located here illustrating my problem, namely that when I load
i have a jquery script. see fiddle here , that loads some scripts depending
Fiddle here: http://jsfiddle.net/emJcx/1/ I have a drop down menu that is a simple show
I have created a fiddle here: http://jsfiddle.net/ozzy/paPRg/1/ Basically, I want to allow users to
I have the following fiddle here: http://jsfiddle.net/9jN8L/ The idea is that sidebar will be
I have a fiddle here - http://jsfiddle.net/hhimanshu/SDr3F/2/ The left pane is already available I
I have a fiddle here http://jsfiddle.net/WULsZ/1/ I load jQuery first and the code is
Here's my fiddle: http://jsfiddle.net/e6kCH/15/ It may sound stupid, but I can't find a way
Here is a fiddle with it centered, but the image with position:relative instead of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.