Page 2 of 3

Rest service Loading.

Posted: Thu Aug 23, 2012 10:40 pm
by Emmz

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 !


Rest service Loading.

Posted: Fri Dec 14, 2012 6:48 am
by aviz

i wanna display a custom gif image on loading..please help


Rest service Loading.

Posted: Fri Dec 14, 2012 8:23 am
by Kateryna Grynko

Hello,
do you want to display gif image during the app loading?


Rest service Loading.

Posted: Fri Dec 14, 2012 8:25 am
by aviz

yes help
thank you


Rest service Loading.

Posted: Fri Dec 14, 2012 8:52 am
by Kateryna Grynko

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


Rest service Loading.

Posted: Sat Jul 13, 2013 5:13 am
by Chris Crawford

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!


Rest service Loading.

Posted: Sat Jul 13, 2013 5:24 am
by Chris Crawford

Disregard. Solution found at https://getsatisfaction.com/apperyio/...


Rest service Loading.

Posted: Thu Aug 22, 2013 4:47 pm
by Chris Whitfield

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!


Rest service Loading.

Posted: Thu Aug 22, 2013 5:26 pm
by Maryna Brodina

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


Rest service Loading.

Posted: Thu Aug 22, 2013 6:36 pm
by Chris Whitfield

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.