Just want to understand the usage of busy indicator does it alternate to timeout/putting wait etc.
for example have following line of code in mainfunct()
1. busy.show();
2. callcustom(); --asynch function without callback this is calling xmlhttpRequest etc.
3. busy.hide();
4. callanothercustom(); -- asynch function without callback
now question is
does line 4 will be executed only when
busy.hide()
completes and line 3 only when line 2 is completed while without busy all (2,4) will be called insidemainfunct()
without waiting line 2 to complete...when
busy.hide()
is being called is there any timer setup which holds until line 2 finishes and then hide and call line 4.