Coder Social home page Coder Social logo

Comments (7)

kachar avatar kachar commented on August 20, 2024

Some kind of workaround the problem is to manually visit each selected item's parents and set the partsel property to true. We have to activate those nodes, otherwise they are updated on user activation.

$("#tree").fancytree("getTree").visit(function(node){
    if(node.selected) {
        node.visitParents(function(parent){
            parent.partsel = true;
            parent.setActive();
        });
    }
});

from fancytree.

mar10 avatar mar10 commented on August 20, 2024

The selction state can now be fixed in the init event:

        init: function(event, ctx) {
            ctx.tree.rootNode.fixSelection3FromEndNodes();
        },

This still has to be automated!

This can also be called in the loadchildren event after a lazy node was loaded.
However I am not sure, if this should be automated since in that case It may be better to apply the selection status from the parent to the newly loaded children.

from fancytree.

kachar avatar kachar commented on August 20, 2024

The last solution solves marks the nodes as selected only for levels > 1. It never marks them as partially selected.

The first level is never marked as selected or partial selected.

from fancytree.

mar10 avatar mar10 commented on August 20, 2024

hmm, can you send a the JSON that you used for the source that is not selected correctly?
This is the test file I used
https://gist.github.com/mar10/5969551
(drop in /test/triage)

from fancytree.

mar10 avatar mar10 commented on August 20, 2024

75e7996 automatically fixup selected nodes in selectMode 3

from fancytree.

kachar avatar kachar commented on August 20, 2024

It works fine when initialised with the data array, but still there is a problem when using the addChildren method. May be we should run the fix method there as well.
Here is the updated gist https://gist.github.com/kachar/5973305

from fancytree.

kachar avatar kachar commented on August 20, 2024

PR #38

from fancytree.

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.