|
|
@@ -18,9 +18,13 @@ export class SovWidgets { |
|
|
|
if ($select.data('width')) { |
|
|
|
options.width = 'auto' |
|
|
|
} |
|
|
|
if ($select.find('option[value=""]')) { |
|
|
|
|
|
|
|
// @TODO : génère une erreur |
|
|
|
/*if ($select.find('option[value=""]')) { |
|
|
|
options.placeholder = $select.find('option[value=""]').html() |
|
|
|
} |
|
|
|
}*/ |
|
|
|
|
|
|
|
options.placeholder = ""; |
|
|
|
|
|
|
|
var myselect = $select.select2(options); |
|
|
|
|
|
|
@@ -28,11 +32,11 @@ export class SovWidgets { |
|
|
|
var event = new Event('change'); |
|
|
|
e.target.dispatchEvent(event); |
|
|
|
}); |
|
|
|
|
|
|
|
myselect.on('select2:unselect', function (e) { |
|
|
|
var event = new Event('change'); |
|
|
|
e.target.dispatchEvent(event); |
|
|
|
}); |
|
|
|
SovTools.log(myselect); |
|
|
|
|
|
|
|
myselect.off('select2:open') |
|
|
|
|