Open
Description
- use js create modal and bind listener on content .
- hide modal.
- trigger show modal again.
script bind lost.
because modal dom removed from dom tree. This not happened in official bootstrap-modal.
I add modal.appendTo($(document)); to removeContainer to solve problem
removeContainer: function (modal) {
modal.appendTo($(document));
modal.$container.remove();
modal.$container = null;
},
Metadata
Metadata
Assignees
Labels
No labels