Added remove button on multiple select choices
This commit is contained in:
parent
3d1dc36711
commit
a07fc21815
7
dist/css/select2.css
vendored
7
dist/css/select2.css
vendored
@ -94,6 +94,13 @@
|
|||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
padding: 0 5px; }
|
padding: 0 5px; }
|
||||||
|
.select2-container.select2-theme-default .selection .multiple-select .rendered-selection .choice .remove {
|
||||||
|
color: #999;
|
||||||
|
display: inline-block;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-right: 2px; }
|
||||||
|
.select2-container.select2-theme-default .selection .multiple-select .rendered-selection .choice .remove:hover {
|
||||||
|
color: #333; }
|
||||||
.select2-container.select2-theme-default.open .selection .single-select, .select2-container.select2-theme-default.open .selection .multiple-select {
|
.select2-container.select2-theme-default.open .selection .single-select, .select2-container.select2-theme-default.open .selection .multiple-select {
|
||||||
border-bottom-left-radius: 0;
|
border-bottom-left-radius: 0;
|
||||||
border-bottom-right-radius: 0; }
|
border-bottom-right-radius: 0; }
|
||||||
|
2
dist/css/select2.min.css
vendored
2
dist/css/select2.min.css
vendored
File diff suppressed because one or more lines are too long
43
dist/js/select2.amd.full.js
vendored
43
dist/js/select2.amd.full.js
vendored
@ -266,6 +266,14 @@ define('select2/results',[
|
|||||||
self.setClasses();
|
self.setClasses();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
container.on('select', function () {
|
||||||
|
self.setClasses();
|
||||||
|
});
|
||||||
|
|
||||||
|
container.on('unselect', function () {
|
||||||
|
self.setClasses();
|
||||||
|
});
|
||||||
|
|
||||||
this.$results.on('mouseup', '.option.selectable', function (evt) {
|
this.$results.on('mouseup', '.option.selectable', function (evt) {
|
||||||
var $this = $(this);
|
var $this = $(this);
|
||||||
|
|
||||||
@ -276,8 +284,6 @@ define('select2/results',[
|
|||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
|
|
||||||
self.setClasses();
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -285,8 +291,6 @@ define('select2/results',[
|
|||||||
originalEvent: evt,
|
originalEvent: evt,
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
|
|
||||||
self.setClasses();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$results.on('mouseenter', '.option.highlightable', function (evt) {
|
this.$results.on('mouseenter', '.option.highlightable', function (evt) {
|
||||||
@ -406,6 +410,18 @@ define('select2/selection/multiple',[
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.$selection.on('click', '.remove', function (evt) {
|
||||||
|
var $remove = $(this);
|
||||||
|
var $selection = $remove.parent();
|
||||||
|
|
||||||
|
var data = $selection.data('data');
|
||||||
|
|
||||||
|
self.trigger('unselected', {
|
||||||
|
originalEvent: evt,
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
container.on('selection:update', function (params) {
|
container.on('selection:update', function (params) {
|
||||||
self.update(params.data);
|
self.update(params.data);
|
||||||
});
|
});
|
||||||
@ -420,7 +436,13 @@ define('select2/selection/multiple',[
|
|||||||
};
|
};
|
||||||
|
|
||||||
MultipleSelection.prototype.selectionContainer = function () {
|
MultipleSelection.prototype.selectionContainer = function () {
|
||||||
return $('<li class="choice"></li>');
|
var $container = $(
|
||||||
|
'<li class="choice">' +
|
||||||
|
'<span class="remove">×</span>' +
|
||||||
|
'</li>'
|
||||||
|
);
|
||||||
|
|
||||||
|
return $container;
|
||||||
};
|
};
|
||||||
|
|
||||||
MultipleSelection.prototype.update = function (data) {
|
MultipleSelection.prototype.update = function (data) {
|
||||||
@ -436,11 +458,10 @@ define('select2/selection/multiple',[
|
|||||||
var selection = data[d];
|
var selection = data[d];
|
||||||
|
|
||||||
var formatted = this.display(selection);
|
var formatted = this.display(selection);
|
||||||
|
|
||||||
var $selection = this.selectionContainer();
|
var $selection = this.selectionContainer();
|
||||||
|
|
||||||
$selection.text(formatted);
|
$selection.append(formatted);
|
||||||
$selection.data('data', data);
|
$selection.data('data', selection);
|
||||||
|
|
||||||
$selections.push($selection);
|
$selections.push($selection);
|
||||||
}
|
}
|
||||||
@ -1057,6 +1078,12 @@ define('select2/core',[
|
|||||||
self.toggleDropdown();
|
self.toggleDropdown();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.selection.on('unselected', function (params) {
|
||||||
|
self.trigger('unselect', params);
|
||||||
|
|
||||||
|
self.trigger('close');
|
||||||
|
});
|
||||||
|
|
||||||
this.results.on('selected', function (params) {
|
this.results.on('selected', function (params) {
|
||||||
self.trigger('select', params);
|
self.trigger('select', params);
|
||||||
|
|
||||||
|
43
dist/js/select2.amd.js
vendored
43
dist/js/select2.amd.js
vendored
@ -266,6 +266,14 @@ define('select2/results',[
|
|||||||
self.setClasses();
|
self.setClasses();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
container.on('select', function () {
|
||||||
|
self.setClasses();
|
||||||
|
});
|
||||||
|
|
||||||
|
container.on('unselect', function () {
|
||||||
|
self.setClasses();
|
||||||
|
});
|
||||||
|
|
||||||
this.$results.on('mouseup', '.option.selectable', function (evt) {
|
this.$results.on('mouseup', '.option.selectable', function (evt) {
|
||||||
var $this = $(this);
|
var $this = $(this);
|
||||||
|
|
||||||
@ -276,8 +284,6 @@ define('select2/results',[
|
|||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
|
|
||||||
self.setClasses();
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -285,8 +291,6 @@ define('select2/results',[
|
|||||||
originalEvent: evt,
|
originalEvent: evt,
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
|
|
||||||
self.setClasses();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$results.on('mouseenter', '.option.highlightable', function (evt) {
|
this.$results.on('mouseenter', '.option.highlightable', function (evt) {
|
||||||
@ -406,6 +410,18 @@ define('select2/selection/multiple',[
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.$selection.on('click', '.remove', function (evt) {
|
||||||
|
var $remove = $(this);
|
||||||
|
var $selection = $remove.parent();
|
||||||
|
|
||||||
|
var data = $selection.data('data');
|
||||||
|
|
||||||
|
self.trigger('unselected', {
|
||||||
|
originalEvent: evt,
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
container.on('selection:update', function (params) {
|
container.on('selection:update', function (params) {
|
||||||
self.update(params.data);
|
self.update(params.data);
|
||||||
});
|
});
|
||||||
@ -420,7 +436,13 @@ define('select2/selection/multiple',[
|
|||||||
};
|
};
|
||||||
|
|
||||||
MultipleSelection.prototype.selectionContainer = function () {
|
MultipleSelection.prototype.selectionContainer = function () {
|
||||||
return $('<li class="choice"></li>');
|
var $container = $(
|
||||||
|
'<li class="choice">' +
|
||||||
|
'<span class="remove">×</span>' +
|
||||||
|
'</li>'
|
||||||
|
);
|
||||||
|
|
||||||
|
return $container;
|
||||||
};
|
};
|
||||||
|
|
||||||
MultipleSelection.prototype.update = function (data) {
|
MultipleSelection.prototype.update = function (data) {
|
||||||
@ -436,11 +458,10 @@ define('select2/selection/multiple',[
|
|||||||
var selection = data[d];
|
var selection = data[d];
|
||||||
|
|
||||||
var formatted = this.display(selection);
|
var formatted = this.display(selection);
|
||||||
|
|
||||||
var $selection = this.selectionContainer();
|
var $selection = this.selectionContainer();
|
||||||
|
|
||||||
$selection.text(formatted);
|
$selection.append(formatted);
|
||||||
$selection.data('data', data);
|
$selection.data('data', selection);
|
||||||
|
|
||||||
$selections.push($selection);
|
$selections.push($selection);
|
||||||
}
|
}
|
||||||
@ -1057,6 +1078,12 @@ define('select2/core',[
|
|||||||
self.toggleDropdown();
|
self.toggleDropdown();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.selection.on('unselected', function (params) {
|
||||||
|
self.trigger('unselect', params);
|
||||||
|
|
||||||
|
self.trigger('close');
|
||||||
|
});
|
||||||
|
|
||||||
this.results.on('selected', function (params) {
|
this.results.on('selected', function (params) {
|
||||||
self.trigger('select', params);
|
self.trigger('select', params);
|
||||||
|
|
||||||
|
43
dist/js/select2.full.js
vendored
43
dist/js/select2.full.js
vendored
@ -9804,6 +9804,14 @@ define('select2/results',[
|
|||||||
self.setClasses();
|
self.setClasses();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
container.on('select', function () {
|
||||||
|
self.setClasses();
|
||||||
|
});
|
||||||
|
|
||||||
|
container.on('unselect', function () {
|
||||||
|
self.setClasses();
|
||||||
|
});
|
||||||
|
|
||||||
this.$results.on('mouseup', '.option.selectable', function (evt) {
|
this.$results.on('mouseup', '.option.selectable', function (evt) {
|
||||||
var $this = $(this);
|
var $this = $(this);
|
||||||
|
|
||||||
@ -9814,8 +9822,6 @@ define('select2/results',[
|
|||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
|
|
||||||
self.setClasses();
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -9823,8 +9829,6 @@ define('select2/results',[
|
|||||||
originalEvent: evt,
|
originalEvent: evt,
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
|
|
||||||
self.setClasses();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$results.on('mouseenter', '.option.highlightable', function (evt) {
|
this.$results.on('mouseenter', '.option.highlightable', function (evt) {
|
||||||
@ -9944,6 +9948,18 @@ define('select2/selection/multiple',[
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.$selection.on('click', '.remove', function (evt) {
|
||||||
|
var $remove = $(this);
|
||||||
|
var $selection = $remove.parent();
|
||||||
|
|
||||||
|
var data = $selection.data('data');
|
||||||
|
|
||||||
|
self.trigger('unselected', {
|
||||||
|
originalEvent: evt,
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
container.on('selection:update', function (params) {
|
container.on('selection:update', function (params) {
|
||||||
self.update(params.data);
|
self.update(params.data);
|
||||||
});
|
});
|
||||||
@ -9958,7 +9974,13 @@ define('select2/selection/multiple',[
|
|||||||
};
|
};
|
||||||
|
|
||||||
MultipleSelection.prototype.selectionContainer = function () {
|
MultipleSelection.prototype.selectionContainer = function () {
|
||||||
return $('<li class="choice"></li>');
|
var $container = $(
|
||||||
|
'<li class="choice">' +
|
||||||
|
'<span class="remove">×</span>' +
|
||||||
|
'</li>'
|
||||||
|
);
|
||||||
|
|
||||||
|
return $container;
|
||||||
};
|
};
|
||||||
|
|
||||||
MultipleSelection.prototype.update = function (data) {
|
MultipleSelection.prototype.update = function (data) {
|
||||||
@ -9974,11 +9996,10 @@ define('select2/selection/multiple',[
|
|||||||
var selection = data[d];
|
var selection = data[d];
|
||||||
|
|
||||||
var formatted = this.display(selection);
|
var formatted = this.display(selection);
|
||||||
|
|
||||||
var $selection = this.selectionContainer();
|
var $selection = this.selectionContainer();
|
||||||
|
|
||||||
$selection.text(formatted);
|
$selection.append(formatted);
|
||||||
$selection.data('data', data);
|
$selection.data('data', selection);
|
||||||
|
|
||||||
$selections.push($selection);
|
$selections.push($selection);
|
||||||
}
|
}
|
||||||
@ -10595,6 +10616,12 @@ define('select2/core',[
|
|||||||
self.toggleDropdown();
|
self.toggleDropdown();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.selection.on('unselected', function (params) {
|
||||||
|
self.trigger('unselect', params);
|
||||||
|
|
||||||
|
self.trigger('close');
|
||||||
|
});
|
||||||
|
|
||||||
this.results.on('selected', function (params) {
|
this.results.on('selected', function (params) {
|
||||||
self.trigger('select', params);
|
self.trigger('select', params);
|
||||||
|
|
||||||
|
4
dist/js/select2.full.min.js
vendored
4
dist/js/select2.full.min.js
vendored
File diff suppressed because one or more lines are too long
43
dist/js/select2.js
vendored
43
dist/js/select2.js
vendored
@ -695,6 +695,14 @@ define('select2/results',[
|
|||||||
self.setClasses();
|
self.setClasses();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
container.on('select', function () {
|
||||||
|
self.setClasses();
|
||||||
|
});
|
||||||
|
|
||||||
|
container.on('unselect', function () {
|
||||||
|
self.setClasses();
|
||||||
|
});
|
||||||
|
|
||||||
this.$results.on('mouseup', '.option.selectable', function (evt) {
|
this.$results.on('mouseup', '.option.selectable', function (evt) {
|
||||||
var $this = $(this);
|
var $this = $(this);
|
||||||
|
|
||||||
@ -705,8 +713,6 @@ define('select2/results',[
|
|||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
|
|
||||||
self.setClasses();
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -714,8 +720,6 @@ define('select2/results',[
|
|||||||
originalEvent: evt,
|
originalEvent: evt,
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
|
|
||||||
self.setClasses();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$results.on('mouseenter', '.option.highlightable', function (evt) {
|
this.$results.on('mouseenter', '.option.highlightable', function (evt) {
|
||||||
@ -835,6 +839,18 @@ define('select2/selection/multiple',[
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.$selection.on('click', '.remove', function (evt) {
|
||||||
|
var $remove = $(this);
|
||||||
|
var $selection = $remove.parent();
|
||||||
|
|
||||||
|
var data = $selection.data('data');
|
||||||
|
|
||||||
|
self.trigger('unselected', {
|
||||||
|
originalEvent: evt,
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
container.on('selection:update', function (params) {
|
container.on('selection:update', function (params) {
|
||||||
self.update(params.data);
|
self.update(params.data);
|
||||||
});
|
});
|
||||||
@ -849,7 +865,13 @@ define('select2/selection/multiple',[
|
|||||||
};
|
};
|
||||||
|
|
||||||
MultipleSelection.prototype.selectionContainer = function () {
|
MultipleSelection.prototype.selectionContainer = function () {
|
||||||
return $('<li class="choice"></li>');
|
var $container = $(
|
||||||
|
'<li class="choice">' +
|
||||||
|
'<span class="remove">×</span>' +
|
||||||
|
'</li>'
|
||||||
|
);
|
||||||
|
|
||||||
|
return $container;
|
||||||
};
|
};
|
||||||
|
|
||||||
MultipleSelection.prototype.update = function (data) {
|
MultipleSelection.prototype.update = function (data) {
|
||||||
@ -865,11 +887,10 @@ define('select2/selection/multiple',[
|
|||||||
var selection = data[d];
|
var selection = data[d];
|
||||||
|
|
||||||
var formatted = this.display(selection);
|
var formatted = this.display(selection);
|
||||||
|
|
||||||
var $selection = this.selectionContainer();
|
var $selection = this.selectionContainer();
|
||||||
|
|
||||||
$selection.text(formatted);
|
$selection.append(formatted);
|
||||||
$selection.data('data', data);
|
$selection.data('data', selection);
|
||||||
|
|
||||||
$selections.push($selection);
|
$selections.push($selection);
|
||||||
}
|
}
|
||||||
@ -1486,6 +1507,12 @@ define('select2/core',[
|
|||||||
self.toggleDropdown();
|
self.toggleDropdown();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.selection.on('unselected', function (params) {
|
||||||
|
self.trigger('unselect', params);
|
||||||
|
|
||||||
|
self.trigger('close');
|
||||||
|
});
|
||||||
|
|
||||||
this.results.on('selected', function (params) {
|
this.results.on('selected', function (params) {
|
||||||
self.trigger('select', params);
|
self.trigger('select', params);
|
||||||
|
|
||||||
|
2
dist/js/select2.min.js
vendored
2
dist/js/select2.min.js
vendored
File diff suppressed because one or more lines are too long
6
src/js/select2/core.js
vendored
6
src/js/select2/core.js
vendored
@ -72,6 +72,12 @@ define([
|
|||||||
self.toggleDropdown();
|
self.toggleDropdown();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.selection.on('unselected', function (params) {
|
||||||
|
self.trigger('unselect', params);
|
||||||
|
|
||||||
|
self.trigger('close');
|
||||||
|
});
|
||||||
|
|
||||||
this.results.on('selected', function (params) {
|
this.results.on('selected', function (params) {
|
||||||
self.trigger('select', params);
|
self.trigger('select', params);
|
||||||
|
|
||||||
|
12
src/js/select2/results.js
vendored
12
src/js/select2/results.js
vendored
@ -127,6 +127,14 @@ define([
|
|||||||
self.setClasses();
|
self.setClasses();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
container.on('select', function () {
|
||||||
|
self.setClasses();
|
||||||
|
});
|
||||||
|
|
||||||
|
container.on('unselect', function () {
|
||||||
|
self.setClasses();
|
||||||
|
});
|
||||||
|
|
||||||
this.$results.on('mouseup', '.option.selectable', function (evt) {
|
this.$results.on('mouseup', '.option.selectable', function (evt) {
|
||||||
var $this = $(this);
|
var $this = $(this);
|
||||||
|
|
||||||
@ -137,8 +145,6 @@ define([
|
|||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
|
|
||||||
self.setClasses();
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -146,8 +152,6 @@ define([
|
|||||||
originalEvent: evt,
|
originalEvent: evt,
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
|
|
||||||
self.setClasses();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
this.$results.on('mouseenter', '.option.highlightable', function (evt) {
|
this.$results.on('mouseenter', '.option.highlightable', function (evt) {
|
||||||
|
25
src/js/select2/selection/multiple.js
vendored
25
src/js/select2/selection/multiple.js
vendored
@ -31,6 +31,18 @@ define([
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.$selection.on('click', '.remove', function (evt) {
|
||||||
|
var $remove = $(this);
|
||||||
|
var $selection = $remove.parent();
|
||||||
|
|
||||||
|
var data = $selection.data('data');
|
||||||
|
|
||||||
|
self.trigger('unselected', {
|
||||||
|
originalEvent: evt,
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
container.on('selection:update', function (params) {
|
container.on('selection:update', function (params) {
|
||||||
self.update(params.data);
|
self.update(params.data);
|
||||||
});
|
});
|
||||||
@ -45,7 +57,13 @@ define([
|
|||||||
};
|
};
|
||||||
|
|
||||||
MultipleSelection.prototype.selectionContainer = function () {
|
MultipleSelection.prototype.selectionContainer = function () {
|
||||||
return $('<li class="choice"></li>');
|
var $container = $(
|
||||||
|
'<li class="choice">' +
|
||||||
|
'<span class="remove">×</span>' +
|
||||||
|
'</li>'
|
||||||
|
);
|
||||||
|
|
||||||
|
return $container;
|
||||||
};
|
};
|
||||||
|
|
||||||
MultipleSelection.prototype.update = function (data) {
|
MultipleSelection.prototype.update = function (data) {
|
||||||
@ -61,11 +79,10 @@ define([
|
|||||||
var selection = data[d];
|
var selection = data[d];
|
||||||
|
|
||||||
var formatted = this.display(selection);
|
var formatted = this.display(selection);
|
||||||
|
|
||||||
var $selection = this.selectionContainer();
|
var $selection = this.selectionContainer();
|
||||||
|
|
||||||
$selection.text(formatted);
|
$selection.append(formatted);
|
||||||
$selection.data('data', data);
|
$selection.data('data', selection);
|
||||||
|
|
||||||
$selections.push($selection);
|
$selections.push($selection);
|
||||||
}
|
}
|
||||||
|
@ -43,6 +43,18 @@
|
|||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
|
|
||||||
|
.remove {
|
||||||
|
color: #999;
|
||||||
|
display: inline-block;
|
||||||
|
font-weight: bold;
|
||||||
|
|
||||||
|
margin-right: 2px;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user