Coder Social home page Coder Social logo

Comments (4)

mar10 avatar mar10 commented on August 20, 2024

What exactly is meant by 'after the process is complete'?
Dynatree set a phase variable while loading or initializing, that could be query by tree.isInitializing() or tree.isUserEvent().
But that was not robust, since there may be multiple lazy loads pending while the user selects a checkbox, ...

Would it help that the event parameter is pass to all handlers?
This should allow to test wether the callback was triggered by a mouse click or a visit() thus allowing to ignore it.

from fancytree.

Ariesto avatar Ariesto commented on August 20, 2024

Yes, if you pass the event parameter to handlers that would solve my issue. I am creating a single select between two trees. If I can access the original event parameter I could identify whether a visit() triggered the selection/deselection versus a mouse click.

from fancytree.

mar10 avatar mar10 commented on August 20, 2024

The callbacks already receive an event parameter, so you could check event.originalEvent to find out.

Can you try that?

from fancytree.

Ariesto avatar Ariesto commented on August 20, 2024

Great point Marvin. I looked for the originalEvent prior to my post, but missed it.

This snippet allows me to test for whether the orig event was a click. I could change it to literally check for the click instead of the undefined:

            beforeSelect: function (e, data) {
                if (typeof data.orgEvent != 'undefined') {
                    //Do logic here.  Clicks are never undefined.  Calling visit() is undefined.
                }
             }

or

            beforeSelect: function (e, data) {
                if (data.orgEvent.type == 'click') {
                    //Do logic here. 
                }
             }

Thanks for the help!

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.