View on GitHub

popup-multiselect

A popup with options. Allows multi select. Based on Bootstrap. Now upgraded to Bootstrap 4.

Actions

Download this project as a .zip file Download this project as a tar.gz file

enable

Enables the widget.

$("select").multiselect("enable");

disable

Disables the widget.

$("select").multiselect("disable");

show

Shows the options modal.

$("select").multiselect("show");

hide

Hides the options modal.

$("select").multiselect("hide");

selectOption

Selects a deselected option.

$("select").multiselect("selectOption", value);

deselectOption

Deselects an already selected option.

$("select").multiselect("deselectOption", value);

addOption

Adds options to already initialized widget.

$("select").multiselect("addOption",
          {value: "OTHER", html: "OTHER", selected: true});