0
razkhan78 created
Hi, we are using .net 8 and abp version 13.1.1.
We have an implementation where we are opening modal from already opened modal.
At that time, UI on first modal is not blocked even if modalmanager.js has code abp.ui.setBusy($("body")) .
How can we handle this?
1 Answer(s)
-
0
Hi @razkhan78
When opening the second modal, are you using
abp.ui.setBusy($('body'));
to block the entire screen and then using the callback method withabp.ui.clearBusy($('body'));
to release the screen after the second modal has opened? Is this the method you are attempting?