svyBlockUI not executing unless a breakpoint is set

Hello all!

I am working with the svyBlockUI plugin for the ngclient and I am having a strange issue where my plugin only displays when a breakpoint is set before the call to svyBlockUI.show(). I am not sure what is causing this, I have tried removing and re-downloading the plugin through the package manager but that was not effective. Here is the code I am trying to use to generate the busy screen, this is in the try block of my code but I have tried moving it to outside the try block and it still didn’t fire off. I am running Servoy 8.3.2.3207. Thank you in advance!

        plugins.svyBlockUI.overlayColor = '#ffffff';        
        plugins.svyBlockUI.overlayOpacity = 0.5;
        plugins.svyBlockUI.spinner = "Chasing dots";
        plugins.svyBlockUI.spinnerBgColor = null;
        plugins.svyBlockUI.show('Generating Report ...');

Not sure why it’s not working for you, as I have it working with similar code (currently in 2019.3 release, but it did work in earlier release…

	plugins.svyBlockUI.spinner = 'Folding cube';
	
	plugins.svyBlockUI.show('Searching, please wait ...');
	//	execute search
	search.loadRecords(scopes.he.he_formFoundset);
	
	plugins.svyBlockUI.stop();

Rafi