Loading panel

To notify the user of ongoing processing during JavaScript execution, the loading panel can be displayed and then hidden at the end of processing with the following functions available from the FlowerJSAPI.get() API:

Function Description
showLoadingPanel() Displays the loading panel
hideLoadingPanel() Hide loading panel

_example of loading panel display for 3 seconds__

JSAPI.get().showLoadingPanel();
setTimeout(function() {
	JSAPI.get().hideLoadingPanel();
}, 3000)