Hi all,
I have a tree node in my application. If i select that tree node i want to show a busy dialog and then that particular page should render.
For that i have written the code as
onTreeSelect: function() {
var oBusyIndicator = new sap.m.BusyDialog({text: "Loading..."});
oBusyIndicator.open();
},