I am running a configuration service from client side inside onEntityInitialized() method using ServiceHelper.callService. How can I run the configuration service in the background mode? I just notice, client side page freezes until such time execution is done. I want client side to be responsive while configuration service is running
Using ServiceHelper.callService *is* asynchronous - you can test this by placing a line if code after the call and it should reach that line before the service returns. Could it be that something else is blocking?
Hi Ryan, thanks for your reply, lookup fields data and details data will not load until such time configuration service execution is done. Any idea how can I fix this?