cancel
Showing results for 
Search instead for 
Did you mean: 

Issue with BusyIndicator for synchronous model

Former Member
0 Kudos

Hello,

I am trying to implement busyIndicator for synchronous model but it is not working.

I tried attachrequestcomplete and jQuery.sap.delayedCall(100, this, function () { bd.open(); });

Both did not work. Can someone suggest a best way for this?

Thanks, Swarnaprakash

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member206705
Participant

The busy indicator's working is blocked by the synchronous call. So, no way. Make it asynchronous call, use the success and failure handlers to react to the completion of the call and things should be fine!

maheshpalavalli
Active Contributor
0 Kudos

call the busy indicator first and then in the delayed call, call the synchronous request. Paste your code here for better solution.

BEst REgards,
Mahesh

junwu
Active Contributor
0 Kudos

no way, I think