Prevent adding a duplicate to a multiselect
This commit is contained in:
parent
05cb94801a
commit
8e4832bd12
1 changed files with 12 additions and 1 deletions
|
@ -129,13 +129,24 @@
|
|||
if(event.keyCode == 13) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
var value = $(this).val();
|
||||
var exists = false;
|
||||
$.each(options,function(index, item) {
|
||||
if ($(item).val() == value) {
|
||||
exists = true;
|
||||
return false;
|
||||
}
|
||||
});
|
||||
if (exists) {
|
||||
return false;
|
||||
}
|
||||
var li=$(this).parent();
|
||||
$(this).remove();
|
||||
li.text('+ '+settings.createText);
|
||||
li.before(createItem(this));
|
||||
var select=button.parent().next();
|
||||
var option=$('<option selected="selected"/>');
|
||||
option.attr('value',$(this).val());
|
||||
option.attr('value',value);
|
||||
option.text($(this).val());
|
||||
select.append(option);
|
||||
li.prev().children('input').trigger('click');
|
||||
|
|
Loading…
Reference in a new issue