Как сделать модель прокручиваемой? [закрыто]Javascript

Форум по Javascript
Anonymous
Как сделать модель прокручиваемой? [закрыто]

Сообщение Anonymous »

У меня есть код, который генерирует модальное окно из JavaScript.
Вот код:

Код: Выделить всё

var _modalManager;

this.init = function (modalManager) {

_modalManager = modalManager;
var modal = _modalManager.getModal();

modal.find(".modal-dialog").addClass("modal-dialog modal-xl  modal-dialog-scrollable");
modal.find(".modal-body").addClass("content d-flex flex-column flex-column-fluid");

var modalId = _modalManager.getModal().attr("id");
console.log(modalId);
};
Как сделать модальное окно прокручиваемым?

Код: Выделить всё

modal.find(".modal-dialog").addClass("modal-dialog modal-xl  modal-dialog-scrollable");
modal.find(".modal-body").addClass("content d-flex flex-column flex-column-fluid");
Я попробовал это решение, но почему оно не работает?


Подробнее здесь: https://stackoverflow.com/questions/798 ... scrollable

Вернуться в «Javascript»