#javascript #bsmultiselect
Вопрос:
Я пытаюсь использовать BsMultiSelect.
Как я могу вручную включить/отключить меню выбора?
Мне удалось успешно отключить меню вот так
// remove all options
removeOptions(select);
// disable the select element
select.setAttribute('disabled', true);
// update the data since all options were removed
select.updateData();
// update the appearance of the menu since it is now disabled
select.updateAppearance();
Затем я попытался включить его таким образом, но это не сработало
// add new options to the select element
addOptions(select);
// enable the select element
select.removeAttribute('disabled');
// update the data since new options were added
select.updateData();
// update the appearance of the menu since it is now enabled
select.updateAppearance();