Questions tagged [multiselect.js]

A user-friendlier drop-in replacement for the standard select with multiple attribute activated.

  • Free (under WTFPL license)
  • Works in an unobtrusive fashion
  • Fully open sourced
  • Keyboard support
  • Provides some callbacks
  • Fully customizable via CSS
  • Depends on jQuery 1.8+
  • Tiny code ~8kb minified

multiselect.js

6 questions
6
votes
0 answers

Javascript loudev MultiSelect - Function not found

I have been trying without success to get multiselect to function as expected. I can wrap the multiSelect call like the following and it works, but for some reason if it is not wrapped like the immediate example code, it does not work. (function ($)…
Jeff Click
  • 889
  • 9
  • 20
1
vote
2 answers

jQuery muiltiselect is not working with AngularJS

I'm using jQuery multiple select with checkbox options here is my control
Gaurav_0093
  • 1,040
  • 6
  • 28
  • 56
1
vote
0 answers

Bind data in select multiple with jquery

I am using select multiple control using selectsize.js here is my control
PTB
  • 3
  • 1
0
votes
0 answers

How to create two side multi select with attached layout

I need to implement two side multi select structure with customization like when i select value from left section it will shift right section without pop up value from left section.
Rahul Pawar
  • 159
  • 1
  • 13
-2
votes
2 answers

deselect mutliselection element using jquery

I have function which should clear multiselection element values function multiselectDeselectAll($el) { $('option', $el).each(function (element) { $el.multiselect('deselect', $(this).val()); }); } rendered html is
user1765862
  • 13,635
  • 28
  • 115
  • 220