Coder Social home page Coder Social logo

Comments (3)

nmeirik avatar nmeirik commented on May 28, 2024 1

Thanks a lot, @Mobius1 for both the quick and extensive reply! Using the appendTo method did the trick. However, I must admit it's still not entirely clear to me based on the documented summary of this option ("Defines the container to append the lasso to.") why it's needed/useful in this case.

Also, I would never go specifically looking for the appendTo section of the documentation because it's not named in a way that appears relevant to my use case. Perhaps it might be worth referring to from https://mobius1.github.io/Selectable/getting-started.html#initialise as well?

from selectable.

Mobius1 avatar Mobius1 commented on May 28, 2024 1

The problem is that the event listeners for an instance (mousedown / touchstart and mouseup / touchend) are attached to the appendTo element. If you have more than one instance and don't define a container, it defaults to document.body so for example you'll have multiple mousedown event listeners attached to document.body and they'll all fire at the same time and hence all selectable.start events defined with on() will fire at same time. It's unavoidable and hence the need to use appendTo when having multiple instances.

I'll update the docs to be more clear.

from selectable.

Mobius1 avatar Mobius1 commented on May 28, 2024

If you have multiple instances and don't define a container with the appendTo option, the event will fire for both instances as they both share the same container (document.body). It'll also cause deselection of all other instances when clicking / tapping on the one instance.

Make sure you use the appendTo option to define the container for your items. See appendTo for more info.

Try this with multiple instances:

Demo

HTML

<ul id="items1">
    <li class="item">1</li>
    <li class="item">2</li>
    <li class="item">3</li>
    <li class="item">4</li>
    ...
</ul>
<ul id="items2">
    <li class="item">1</li>
    <li class="item">2</li>
    <li class="item">3</li>
    <li class="item">4</li>
	...
</ul>	

JS

const list1 = document.getElementById("items1");
const list2 = document.getElementById("items2");

const selectable1 = new Selectable({
    filter: list1.children,
    appendTo: list1
});

const selectable2 = new Selectable({
    filter: list2.children,
    appendTo: list2
});

from selectable.

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.