xxxxxxxxxx
1
<select data-mdb-select-init id="selectID">
2
<option value="-1">All</option>
3
<option value="2" selected="selected">Two</option>
4
<option value="3">Three</option>
5
<option value="4">Four</option>
6
<option value="5">Five</option>
7
</select>
8
<label class="form-label select-label">Example label</label>
9
10
<a href="" onclick="return false;" id="setToFirstValue" class="icon-link">set me To "-1"</a>
11
<a href="" onclick="return false;" id="setToLastValue" class="icon-link">set me To "5"</a>
1
1
xxxxxxxxxx
1
document.querySelector("#setToFirstValue").addEventListener('click', () => {
2
let select = document.getElementById("selectID");
3
mdb.Select.getOrCreateInstance(select).setValue("-1");
4
});
5
document.querySelector("#setToLastValue").addEventListener('click', () => {
6
let select = document.getElementById("selectID");
7
mdb.Select.getOrCreateInstance(select).setValue("5");
8
});
Console errors: 0