All Projects → crlcu → Multiselect

crlcu / Multiselect

Licence: mit
jQuery multiselect plugin with two sides. The user can select one or more items and send them to the other side.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Multiselect

MultiSelect
swift
Stars: ✭ 12 (-95.79%)
Mutual labels:  multiselect
scrupulous
Simple inline form validation using HTML5 attributes that plays nicely with Bootstrap
Stars: ✭ 12 (-95.79%)
Mutual labels:  jquery-plugin
Colorpicker
jQuery UI widget for color picking (similar to the one in Microsoft Office 2010).
Stars: ✭ 271 (-4.91%)
Mutual labels:  jquery-plugin
personJudge
personJudge System 网站预览---->http://47.106.235.227 (账号111,密码12345) 后端:SpringBoot/JPA/mysql/cache/前后端分离(nginx做静态转发)/swagger 前端:bootstrap+Jquery及其插件:jquery-cookie,toastr,steps,validate,wnumb,nouislider,DataTables,layer,chosen,echarts
Stars: ✭ 35 (-87.72%)
Mutual labels:  jquery-plugin
MeeInk
Material Design click effect
Stars: ✭ 33 (-88.42%)
Mutual labels:  jquery-plugin
Smartscroll
jQuery plugin for scrolljacking and auto-hashing
Stars: ✭ 255 (-10.53%)
Mutual labels:  jquery-plugin
Github-Contribution-Graph
Jquery plugin to render like contribution graph on Github.
Stars: ✭ 43 (-84.91%)
Mutual labels:  jquery-plugin
Sidr
Sidr is a jQuery plugin for creating side menus and the easiest way for doing your menu responsive.
Stars: ✭ 2,924 (+925.96%)
Mutual labels:  jquery-plugin
jquery-skeduler
This is jQuery plugin which provides you simple scheduler with some items on OX and 24-hours timeline on OY.
Stars: ✭ 23 (-91.93%)
Mutual labels:  jquery-plugin
Clndr
📆 a jQuery calendar plugin that uses HTML templates
Stars: ✭ 2,793 (+880%)
Mutual labels:  jquery-plugin
menu
基于jQuery的轻量级响应式菜单插件
Stars: ✭ 18 (-93.68%)
Mutual labels:  jquery-plugin
Web-Time-Tracker
Plugin named Timetracker is a time counter that works in both increase and decrease directions.
Stars: ✭ 21 (-92.63%)
Mutual labels:  jquery-plugin
Fonticonpicker
🌈 jQuery fontIconPicker v2 is a small (3.22kb gzipped) jQuery plugin which allows you to include a simple icon picker with search and pagination inside your administration forms.
Stars: ✭ 263 (-7.72%)
Mutual labels:  jquery-plugin
image-uploader
Simple Drag & Drop image uploader plugin to static forms, without using AJAX
Stars: ✭ 70 (-75.44%)
Mutual labels:  jquery-plugin
Js Offcanvas
A lightweight, flexible jQuery off-canvas navigation plugin which lets you create fully accessible sidebar or top/bottom sliding (or push) panels with keyboard interactions and ARIA attributes.
Stars: ✭ 272 (-4.56%)
Mutual labels:  jquery-plugin
leaflet-locationpicker
Simple location picker on Leaflet map
Stars: ✭ 31 (-89.12%)
Mutual labels:  jquery-plugin
Jquery Tablesort
A tiny & dead-simple jQuery plugin for sortable tables.
Stars: ✭ 254 (-10.88%)
Mutual labels:  jquery-plugin
Selectmenu
Simple, easily and diversity menu solution
Stars: ✭ 284 (-0.35%)
Mutual labels:  jquery-plugin
Preloadme
PreLoadMe, a lightweight jQuery website preloader.
Stars: ✭ 272 (-4.56%)
Mutual labels:  jquery-plugin
Email Autocomplete
A jQuery plugin that suggests and autocompletes the domain in email fields.
Stars: ✭ 265 (-7.02%)
Mutual labels:  jquery-plugin

multiselect

jQuery multiselect plugin with two sides. The user can select one or more items and send them to the other side.

Demo

Requirements

  • jQuery 1.7 or higher

Quick start

Several quick start options are available:

  • Clone the repo: git clone https://github.com/crlcu/multiselect.git or
  • Install with Bower: bower install multiselect-two-sides.

Usage example

<div class="row">
	<div class="col-xs-5">
		<select name="from[]" id="multiselect" class="form-control" size="8" multiple="multiple">
			<option value="1">Item 1</option>
			<option value="3">Item 3</option>
			<option value="2">Item 2</option>
		</select>
	</div>
	
	<div class="col-xs-2">
		<button type="button" id="multiselect_rightAll" class="btn btn-block"><i class="glyphicon glyphicon-forward"></i></button>
		<button type="button" id="multiselect_rightSelected" class="btn btn-block"><i class="glyphicon glyphicon-chevron-right"></i></button>
		<button type="button" id="multiselect_leftSelected" class="btn btn-block"><i class="glyphicon glyphicon-chevron-left"></i></button>
		<button type="button" id="multiselect_leftAll" class="btn btn-block"><i class="glyphicon glyphicon-backward"></i></button>
	</div>
	
	<div class="col-xs-5">
		<select name="to[]" id="multiselect_to" class="form-control" size="8" multiple="multiple"></select>
	</div>
</div>
<script type="text/javascript" src="path/to/jquery.min.js"></script>
<script type="text/javascript" src="path/to/multiselect.min.js"></script>

<script type="text/javascript">
jQuery(document).ready(function($) {
	$('#multiselect').multiselect();
});
</script>

Bugs and feature requests

If your problem or idea is not addressed yet, please open a new issue.

Versioning

For transparency into release cycle and in striving to maintain backward compatibility, multiselect is maintained under the Semantic Versioning guidelines.

License

The multiselect plugin is open-sourced software licensed under the the MIT license.

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].