All Projects → nekolr → jquery-transfer

nekolr / jquery-transfer

Licence: other
☑️ A jQuery plugin that is a shuttle box

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to jquery-transfer

jquery-google-reviews
simple jquery Plugin that utilizes Google API to get data from a Place on Google Maps
Stars: ✭ 33 (-19.51%)
Mutual labels:  jquery-plugin
jquery-smarty
jQuery Smarty Plugin (jQSmarty) is a port of the Smarty Templating Engine to Javascript/jQuery, offering a familiar client-side templating solution
Stars: ✭ 18 (-56.1%)
Mutual labels:  jquery-plugin
jquery-digitalwrite
jquery plugin to write charecters in digital format in a 5x5 matrix
Stars: ✭ 24 (-41.46%)
Mutual labels:  jquery-plugin
rellax
jQuery Rellax Plugin - Parallax awesomeness
Stars: ✭ 14 (-65.85%)
Mutual labels:  jquery-plugin
international-telephone-input
Integration to Magento 2 a jQuery plugin for entering and validating international telephone numbers.
Stars: ✭ 26 (-36.59%)
Mutual labels:  jquery-plugin
emulatetab
A jQuery plugin to emulate tabbing between elements on a page.
Stars: ✭ 15 (-63.41%)
Mutual labels:  jquery-plugin
ripple-effect-click
Add ripple effect to any element you want when the click action happens ("ripple effect")
Stars: ✭ 15 (-63.41%)
Mutual labels:  jquery-plugin
jquery-datepicker
A full-featured datepicker jquery plugin
Stars: ✭ 35 (-14.63%)
Mutual labels:  jquery-plugin
animationCounter.js
animationCounter.js is a jQuery plugin that animates a number from a value to another value or to an infinite value
Stars: ✭ 18 (-56.1%)
Mutual labels:  jquery-plugin
jquery-lightbox
A jQuery plugin, inspired and based on Lightbox 2 by Lokesh Dhakar
Stars: ✭ 22 (-46.34%)
Mutual labels:  jquery-plugin
ajxnetcore
Its an innovative method to turn an ASP.NET Core Application Into Single Page Application, While enhancing the Software performance both on server and client side.
Stars: ✭ 31 (-24.39%)
Mutual labels:  jquery-plugin
jquery.peekABar
jQuery plugin for a Notification Bar
Stars: ✭ 59 (+43.9%)
Mutual labels:  jquery-plugin
scrollbox
A lightweight jQuery custom scrollbar plugin, that triggers event when reached the defined point.
Stars: ✭ 15 (-63.41%)
Mutual labels:  jquery-plugin
Timespace
A jQuery plugin to handle displaying of time events
Stars: ✭ 27 (-34.15%)
Mutual labels:  jquery-plugin
fancy-textfill
Fast implementation for resizing text to fill its container.
Stars: ✭ 17 (-58.54%)
Mutual labels:  jquery-plugin
jquery-accessible-simple-tooltip-aria
jQuery accessible simple tooltip window, using ARIA
Stars: ✭ 22 (-46.34%)
Mutual labels:  jquery-plugin
jquery-asPieProgress
A jQuery plugin that animate the pie progress.
Stars: ✭ 41 (+0%)
Mutual labels:  jquery-plugin
jQuery-Freeze-Table-Column-and-Rows
This is a jQuery plugin that can make table rows and columns not scroll. It can take a given HTML table object and set it so it can freeze a given number of columns or rows or both, so the fixed columns or rows do not scroll. The rows to be frozen should be placed in the table head section. It can also freeze rows and columns combined with using…
Stars: ✭ 20 (-51.22%)
Mutual labels:  jquery-plugin
jquery-linechart
JQuery plugin for creating charts
Stars: ✭ 42 (+2.44%)
Mutual labels:  jquery-plugin
NoobScroll
A lightweight jQuery Plugin that add some cool function to make scrolling more fun [Archive]
Stars: ✭ 43 (+4.88%)
Mutual labels:  jquery-plugin

Introduction

A jQuery plugin that is a shuttle box.

Preview

snapshot01

snapshot02

snapshot03

snapshot04

snapshot05

snapshot06

snapshot07

options

option description type default
itemName The name of each item in the data string item
groupItemName The name of each group in the data string groupItem
groupArrayName The name of the data array for each group string groupArray
valueName The value name of each item in the data string value
tabNameText The left tab text string items
rightTabNameText The right tab text string selected items
searchPlaceholderText The searcher's placeholder text string search
dataArray items data array array
groupDataArray grouping item data array array

Usage

grouping

var groupDataArray = [
    {
        groupItem: "China", 
        groupArray: [
            {
                item: "Beijing", 
                value: 1
            },
            {
                item: "Shanghai", 
                value: 2
            }
        ]
    },
    {
        groupItem: "Japan",
        groupArray: [
            {
                item: "Tokyo", 
                value: 6
            }
        ]
    }
];
var settings = {
    groupDataArray: groupDataArray,
    callable: function (items) {
        // your code
    }
};

var transfer = $(".transfer").transfer(settings);
// get selected items
transfer.getSelectedItems();

no grouping

var dataArray = [
    {
        item: "Beijing", 
        value: 1
    },
    {
        item: "Shanghai", 
        value: 2
    },
    {
        item: "Tokyo", 
        value: 6
    }
];
var settings = {
    dataArray: dataArray,
    callable: function (items) {
        // your code
    }
};

var transfer = $(".transfer").transfer(settings);
// get selected items
transfer.getSelectedItems();

selected data

var dataArray = [
    {
        item: "Beijing", 
        value: 1,
        selected: true
    },
    {
        item: "Shanghai", 
        value: 2
    },
    {
        item: "Tokyo", 
        value: 6
    }
];

disabled data

var dataArray = [
    {
        item: "Beijing", 
        value: 1,
        disabled: true
    },
    {
        item: "Shanghai", 
        value: 2
    },
    {
        item: "Tokyo", 
        value: 6
    }
];
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].