I've seen a couple similar questions on here already, but none that were close enough to what I want that actually had an answer.
I have a CF page. The query that generates most of the page has the potential, depending on the user, to go long and then we're staring at a blank page for a moment, thinking that it's unresponsive.
Basically, I've been tasked with having a loading gif of sorts on the page until it's ready so that the user doesn't think it's crashed.
I've tried the CFFLUSH method, and besides the fact that it doesn't really work as expected (we're using IE9 and IIS and apparently there are settings not playing nicely with each other) it also leaves the "loading" text/image on the screen once the main page loads. I want it to go away once the page loads.
I can't use jQuery
I can't really use native Ajax anymore than what I can access using CFAJAX calls, etc.
The other developer here has suggested using CFWINDOW like he does elsewhere to check if the session is timing out, etc., but I haven't figured out how yet. I'd be open to those if someone could guide me on that.
Thoughts?