Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Does display:none to display:block reload chart data?

bostonmacosxJan 29 2015 — edited Jan 30 2015

I'm using the following javascript to loop through some of the charts on the page for a kiosk type of look:

textlist = ["chart1","chart2","chart3","chart4"];

start = 0;

setInterval(function(){

  if(start>3){ start =0;}

  $('#' + textlist[start]).fadeIn(2000).delay(5000).fadeOut(2000);

start++;

},10000);

It fades correctly however it appears as if it is loading the chart everytime it fades back in. I was hoping not to ping the server over and over again. I see what looks like a loading wheel. Is this a default of APEX to reload a chart that has the display value toggled?

thanks

Rob.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 27 2015
Added on Jan 29 2015
1 comment
751 views