Rest service Loading.
Ok ! Thanks again Max and Marina...
For others...
Created a custom CSS in Tiggzi. Name not matter
Put in code below, then save.
code#ajaxBusy {display: none !important;} /code
No more spinner and overlay !
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Ok ! Thanks again Max and Marina...
For others...
Created a custom CSS in Tiggzi. Name not matter
Put in code below, then save.
code#ajaxBusy {display: none !important;} /code
No more spinner and overlay !
i wanna display a custom gif image on loading..please help
Hello,
do you want to display gif image during the app loading?
yes help
thank you
For iOS devices you can add image this way. Images will be displayed while app is loading.
a href="https://d37wxxhohlp07s.cloudfront.net/s ... 1355475030[/img] /a
Has this implementation changed? I tried to use #ajaxBusy {display: none !important;} in a custom css file, but im still getting the spinner. btw im calling the service inside of a js file with "setInterval( "geolocation2.execute({})" , 10000); "
Thanks!
Disregard. Solution found at https://getsatisfaction.com/apperyio/...
Ok so would this mean if i want a spinner to show on page load i go to design tab of the page and would run custom javascript with the following:
function showSpinner() {
alert('ajax start');
}
and If i want the spinner to end on service success i would go to data tab, select the service and on success run custom JS with the following?
function hideSpinner() {
alert('ajax success');
}
Thanks!
Hi, you're right. But if you need just spinner (not alert) you can use codeshowSpinner()/code
and
codehideSpinner()/code
instead
codefunction showSpinner() {
alert('ajax start');
} /code
and
codefunction hideSpinner() {
alert('ajax success');
} /code
Ok so ive done custom js on page load and used the following:
function showSpinner()
and used custom js on service success and used the following:
function hideSpinner()
unfortunately the spinner loads always and it doesn't navigate to the page where the list service is invoked. I'm stuck on the previous page with the spinner loading always.
trying to figure out what im doing wrong. I've even tried moving the ordering around with the spinner loading before and after the list service on page load.