Page 1 of 2
$('#ajaxBusy').remove(); NOT WORKING AFTER LATEST UPGRADE
Posted: Tue Dec 04, 2012 4:38 pm
by Arcelio J. Fetizanan Jr.
$('#ajaxBusy').remove(); not working after latest upgrade of webisite. Nothing was changed on the code but after getting the latest build after the upgrade, hiding the loading animation is not working anymore.
$('#ajaxBusy').remove(); NOT WORKING AFTER LATEST UPGRADE
Posted: Tue Dec 04, 2012 5:03 pm
by Kateryna Grynko
Hello,
I will find out and update.
$('#ajaxBusy').remove(); NOT WORKING AFTER LATEST UPGRADE
Posted: Tue Dec 04, 2012 5:03 pm
by Arcelio J. Fetizanan Jr.
Thanks please. I need the answer immediately for this. Thanks.
$('#ajaxBusy').remove(); NOT WORKING AFTER LATEST UPGRADE
Posted: Tue Dec 04, 2012 6:29 pm
by maxkatz
It should work, use page load event to remove the indicator from the page:
$('#ajaxBusy').remove(); NOT WORKING AFTER LATEST UPGRADE
Posted: Wed Dec 05, 2012 1:38 am
by Arcelio J. Fetizanan Jr.
It's still the same. Its already in pageload. I'm using the old editor still since its an app I created months ago.
$('#ajaxBusy').remove(); NOT WORKING AFTER LATEST UPGRADE
Posted: Wed Dec 05, 2012 1:49 am
by maxkatz
Can you try with page show and let us know if that works?
$('#ajaxBusy').remove(); NOT WORKING AFTER LATEST UPGRADE
Posted: Wed Dec 05, 2012 2:14 am
by Arcelio J. Fetizanan Jr.
Nopes. It's still the same for $('#ajaxBusy').remove();
Let me know if there are any workarounds.
$('#ajaxBusy').remove(); NOT WORKING AFTER LATEST UPGRADE
Posted: Wed Dec 05, 2012 4:24 am
by maxkatz
Can you create a simple page with a button that invokes any service and code to remove the busy indicator on page show and share the link?
$('#ajaxBusy').remove(); NOT WORKING AFTER LATEST UPGRADE
Posted: Wed Dec 05, 2012 9:39 am
by Kateryna Grynko
There are two workarounds.
You can use "Navigate to page" action instead of "Run custom javascript" to navigate between screens.
Or you can leave "Run Custom Javascript", but instead of codenavigateTo('Feedback');/code use codenavigateTo('Feedback', {reverse: false});/code
$('#ajaxBusy').remove(); NOT WORKING AFTER LATEST UPGRADE
Posted: Wed Dec 05, 2012 5:32 pm
by Arcelio J. Fetizanan Jr.
This does not work. My code calls a service every n seconds. Whenever it does, it displays the rotating screen. Before it is already hidden.