Как получить значение выбранного значения, используя свойство Html, когда я нажимаю ОК.
changeStatus(row) {
debugger;
swal({
title: 'Change Status',
text: txt,
html: '<label class=" control-label" style="margin-top: 4px;"></label><select style="margin-left: -51%;"class="swal2-select id="dropdown"><option value="Certified">Certified</option> <option value="Registered">Registered</option> <option value="Processed">Processed</option></select><br>' + '<b style="margin-left: -84%;">Remarks </b><br>' +
'<textarea id="text" class="form-control" rows="5"></textarea>',
showCancelButton: true,
}).then((result) => {
if (result.value) {
debugger;
row.Notes = document.getElementById('text'),
row.Notes = row.Notes.value;
}
});
}