Hi,
I am updating some scripts from the classic M3 UI to to modern. Previously I have used the following to activate the busy-indicator:
/** Set busy indicator */
setBusy(busy) {
if(busy){
$("#content").inforBusyIndicator({ modal: true });
} else {
$("#content").inforBusyIndicator("close");
};
};
</code></div>
<div><code>
However, this does not work with the modern UI. Does anyone know another way of activating this with the modern M3 UI?