GithubHelp home page GithubHelp logo

Comments (5)

clauderic avatar clauderic commented on May 15, 2024 2

Just published 0.0.8 with this feature. Just pass in a distance prop to your SortableContainer.

Alternatively, you may also use shouldCancelStart, which was just released today as well. This function gets invoked before sorting begins and can be used to programatically cancel sorting before it begins.

Here's the default implementation:

function shouldCancelStart(e) {
    // Cancel sorting if the event target is an `input`, `textarea`, `select` or `option`
    if (['input', 'textarea', 'select', 'option'].indexOf(e.target.tagName.toLowerCase()) !== -1) {
        return true; // Return true to cancel sorting
    }
}

from react-sortable-hoc.

NeXTs avatar NeXTs commented on May 15, 2024

Yes, I guess it will be much more evident to users than "pressDelay" option
Really looking forward to this feature too

from react-sortable-hoc.

bvaughn avatar bvaughn commented on May 15, 2024

I encountered a similar issue with sortable FlexTable rows. My table contained <input> tags which stopped working when I made the whole row draggable. (Clicks on the <input> would just start a drag.) I ended up using the drag-handle approach, which works pretty well. But if there was some sort of threshold it might be nicer still.

This might still lead to edge-cases when it comes to things like text-selection so maybe some way to cancel/block a drag (eg #36) might also be nice.

from react-sortable-hoc.

NeXTs avatar NeXTs commented on May 15, 2024

aww yeah!

from react-sortable-hoc.

tornstrom avatar tornstrom commented on May 15, 2024

Sweet, thanks @clauderic!

from react-sortable-hoc.

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.