jquery-modal
jquery-modal copied to clipboard
C# forms inside modal don't work as modal is moved from the DOM to another place and and not restored on close.
In C# Forms only variables inside the
I have an another solution (basically the same) for each modal of you application :
$('.modal').on($.modal.AFTER_CLOSE, function(event, modal) {
$(this).insertAfter($(modal.$anchor));
});
with this function, after the modal is closed (after animation for exemple), i replace the modal after the button action.