xxxxxxxxxx
1
<div class="d-flex justify-content-between user-select-none h-100">
2
<div class="col-6 col-md-4 col-xl-2 mb-3 mb-xl-2">
3
<button class="btn btn-darkness"
4
onclick="modal_groupEdit()">
5
Group Edit
6
</button>
7
</div>
8
<div class="col-6 col-md-4 col-xl-2 mb-3 mb-xl-2">
9
<select class="select" onchange="sortTable(value);">
10
<option value="0">Option 1</option>
11
<option value="1">Option 2</option>
12
<option value="2">Option 3</option>
13
<option value="3">Option 4</option>
14
<option value="4">Option 5</option>
15
<option value="5">Option 6</option>
16
</select>
17
<label class="form-label select-label">Sort By</label>
18
</div>
19
</div>
xxxxxxxxxx
1
@charset "UTF-8";
2
3
.select-arrow:before {
4
content: "\25BC";
5
}
xxxxxxxxxx
1
const ac_modal_show = document.getElementById('modal_show');
2
ac_modal_show.addEventListener('shown.bs.modal', (e) => {
3
4
document.querySelectorAll('.form-outline').forEach((formOutline) => {
5
new mdb.Input(formOutline).init();
6
});
7
8
document.querySelectorAll('.select-modal').forEach((select) => {
9
new mdb.Select(select).close();
10
});
11
12
$('.datepicker').datepicker({
13
container:'”body”'
14
});
15
16
});
Console errors: 0