Code Monkey home page Code Monkey logo

jquery-sortablejs's Introduction

jQuery SortableJS

A jQuery binding for SortableJS

Demo: https://jsbin.com/nopixes/edit?html,js,console,output (credit to @laflier)

Installation

Webpack/Browserify

Install package:

npm i -D jquery-sortablejs

Import into project:

import 'jquery-sortablejs';

CDN:

<script src="https://cdn.jsdelivr.net/npm/jquery-sortablejs@latest/jquery-sortable.js"></script>

Usage

Initialization

// Without options:
$('#my-list').sortable();

// With options:
$('#my-list').sortable({
	// SortableJS options go here
	// See: (https://github.com/SortableJS/Sortable#options)

	handle: '.handle',
	invertSwap: true,
	// . . .
})

Getting Sortable instance

$('#my-list').sortable();


var mySortableList = $('#my-list').sortable('widget');

Getting/Setting options

Call .sortable() with the first argument as the option name and the second as the option value

// Get an option
var isDisabled = $('#my-list').sortable('disabled');

// Set an option
$('#my-list').sortable('disabled', !isDisabled);

Destroying Sortable

Pass 'destroy' argument into .sortable()

// Destroy Sortable
$('#my-list').sortable('destroy');

Calling Sortable functions

Pass the name of the function as string into .sortable(), followed by any arguments

// Sortable toArray
var order = $('#my-list').sortable('toArray');

License

MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

jquery-sortablejs's People

Contributors

owen-m1 avatar rubaxa avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

jquery-sortablejs's Issues

Sortable is not a constructor

I keep getting Sortable is not a constructor when using it with Webpack in Laravel.

import Sortable from 'sortablejs';
import 'jquery-sortablejs';

window.Sortable = Sortable;
window.$ = window.jQuery = require('jquery');

It works fine when I use CDN. What could be causing this?

Can we prevent dragging in vertical Direction ?

Below is [https://jsfiddle.net/riyamitra/4oatsyde/] (js fiddle for the scenario) I need to prevent vertically scrolling as my list horizontally scrolling. I want the dragging element to be only in horizontal direction.

vertical scroll will break sort on tables

I want to be able to sort table headers on a table. When the table requires vertical scroll the headers are no longer sortable horizontally.

I am not sure if this has anything to do with it but I do have a bootstrap table resetView with the fixed-height option.

Uncaught TypeError: Cannot use 'in' operator to search for '#<Object>' in undefined

When using this call:

$(listId).sortable({
    handle : '.sortablehandle',
    onChange: function() {
        //...
    }
});

I am getting the following error in jquery-sortable.js:68:

Uncaught TypeError: Cannot use 'in' operator to search for '#<Object>' in undefined

I am using this versions:

  • "jquery": "^3.4.1",
  • "jquery-sortablejs": "^1.0.1",
  • "sortablejs": "^1.10.2",

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.