ソースを参照

Merge branch 'develop'

develop
Guillaume 2年前
コミット
87d24640ae
2個のファイルの変更10行の追加5行の削除
  1. +3
    -2
      Resources/assets/app/adminlte/main/init.js
  2. +7
    -3
      Resources/assets/functions/widgets.js

+ 3
- 2
Resources/assets/app/adminlte/main/init.js ファイルの表示

@@ -1,8 +1,9 @@
window.addEventListener('load', (event) => {

$(document).on('select2:open', () => {
// @TODO : cela met le focus sur le premier select2 du document
/*$(document).on('select2:open', () => {
document.querySelector('.select2-search__field').focus();
});
});*/

SovNotification.init();


+ 7
- 3
Resources/assets/functions/widgets.js ファイルの表示

@@ -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')


読み込み中…
キャンセル
保存