Coder Social home page Coder Social logo

Comments (4)

clauderic avatar clauderic commented on May 25, 2024 2

Just published 0.0.8 to npm with support for shouldCancelStart, which should solve most use cases. The implementation is up to you, though by default it will prevent sorting on text / select inputs. Alternatively, you could add a custom data-attribute to the elements you want to prevent from being sorted.

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 25, 2024

Something like cancel from jQuery UI Draggable

from react-sortable-hoc.

bvaughn avatar bvaughn commented on May 25, 2024

One thing you could try would be to limit the draggable region in your table headers (useDragHandle == true) so that users could only drag when they click on a drag-handle (SortableHandle). Then you could treat a click-on-header-text as a vertical-sort action, and a click-on-drag-handle as a horizontal-sort action.

from react-sortable-hoc.

NeXTs avatar NeXTs commented on May 25, 2024

thanks!

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.