Giter Site home page Giter Site logo

Comments (5)

rniemeyer avatar rniemeyer commented on July 18, 2024

You are given the observableArray as the targetParent. It is up to you to decide how you will identify it. The mapping plugin will put your items into it with their properties, but it won't add properties directly on the observableArray itself.

So, you could choose to add the id property to your observableArrays yourself or in the "create" callback of the mapping plugin.

Alternatively, you could do some comparison yourself like arg.targetParent === self.engineModel.users

Would be happy to help you further with this one.

from knockout-sortable.

crockpotveggies avatar crockpotveggies commented on July 18, 2024

I think you qualify as Knockout's best evangelist ;)

I tried to do some research before blindly asking for help, but this was as far as I got from this SO question: http://stackoverflow.com/questions/8401799/knockoutjs-adding-observable-properties-and-functions-to-objects-in-a-mapping-g

var mapping = {
        "users": {
            key: function(data) { return ko.utils.unwrapObservable(data.id); },
            create: function(options) {
                return createUser(options.data);
            }
        },
        "jobs": {
            key: function(data) { return ko.utils.unwrapObservable(data.id); }
        }
    };
    var createUser = function(user) {
        var result = ko.mapping.fromJS(user);
        result.parentId = user.id;
        return result;
    };

My usual attempts to then access arg.targetParent.parentId either yielded undefined or has no method 'parentId'. Your guidance is much appreciated :)

If you feel this needs to move to StackOverflow out of GitHub Issues I can open up a question.

from knockout-sortable.

rniemeyer avatar rniemeyer commented on July 18, 2024

In this case, the parentId is being added to the item rather than the observableArray itself. You would be able to read it off arg.item though. Not sure if that is what you want to do?

Otherwise, you could do:

var createUser = function(user) {
    var result = ko.mapping.fromJS(user);
    result.jobs.userId = user.id;
    return result;
};

Like: http://jsfiddle.net/rniemeyer/F782z/8/

No problem keeping this issue here. We can keep working on it, until we get it solved for you.

from knockout-sortable.

crockpotveggies avatar crockpotveggies commented on July 18, 2024

Your method was much more brilliant than my hack.

I created a temporary solution but I was not impressed with its performance: http://jsfiddle.net/DeLongey/ZnhtB/ essentially I parsed the DOM to grab the ID, but that defeats the whole purpose LOL

So to settle this issue and help my understanding (and future readers), in order to access a property I want in the observableArray from a parent, I need to set the child's properties by chaining them when creating the parent (like as in your response).

I was unaware that it would work (I was afraid it would interfere with the child). I can confirm it indeed works :) and in fact this simplifies my coding even further.

Thank you very much! Learned a lot!

from knockout-sortable.

rniemeyer avatar rniemeyer commented on July 18, 2024

OK- glad that you got it working!

from knockout-sortable.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.