Hello ,
Apex 4.2
i m trying to display progress bar during report refreshing.
i tried something like this
javascript :
apex.widget.waitPopup();
$('#my_report').trigger('apexrefresh');
$("#apex_wait_popup").remove();
$("#apex_wait_overlay").remove();
since the refresh is asynchronous, the remove is done before that the refresh is over.
is it possible to make an AJAX call to refresh report and to set a callback function who will remove the wait_popup.
if yes , could you please help me , i didn't found sample for that.
any other solution ?
thanks for your help
Ludo