HTML
xxxxxxxxxx
1
<select data-mdb-select-init id="selectID">
2
<option value="-1">All</option>
3
<option value="2">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>
CSS
1
1
JS
xxxxxxxxxx
1
let select = document.getElementById("selectID");
2
let selectInstance = mdb.Select.getOrCreateInstance(select)
3
selectInstance.setValue("2");
4
5
document.querySelector("#setToFirstValue").addEventListener('click', () => {
6
selectInstance.setValue("-1");
7
});
8
document.querySelector("#setToLastValue").addEventListener('click', () => {
9
selectInstance.setValue("5");
10
});
Console errors: 0