>Anyone know if there is some javascript function I can call to invoke >the CF loading div and then hide it again? Something like >coldfusion.ajax.showLoading() or some such thing. I've been looking >online and in the CF javascript source files and haven't figure it out >yet.
It's just a hidden div that's toggled when a data is loading. You could very easily roll your own by creating a div with an ajax loading gif (check http://ajaxload.info), hiding it with css by default (display:none) and then showing it before you call your ajax proxy and hiding it again in the callback function/error handler. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308894 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

