Hi Madhu,
You mean something like this? JS Bin - Collaborative JavaScript Debugging
I have added a delay of 3 seconds to show the busy dialog. But normally afterOpen event will get hit when the dialog content is ready.
Regards,
Sai.
Hi Madhu,
You can use busydialog when you want to perform some action.
Please check the sample piece of code below:
var busy = new sap.m.BusyDialog({text:"Please Wait"})
busy.open()
then after you getting the data.
then you need to close the busy dialog busy.close();
Thanks,
Deepak Raj.
Add a comment