Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/08/2010, 18:45
Avatar de maycolalvarez
maycolalvarez
Colaborador
 
Fecha de Ingreso: julio-2008
Ubicación: Caracas
Mensajes: 12.120
Antigüedad: 16 años, 3 meses
Puntos: 1532
Respuesta: Mostrar Imagen Loading

los eventos en xajax 0.5 son: xajax.callback.global.onRequest y xajax.callback.global.beforeResponseProcessing

adapta este código según tus necesidades al final de tus paginas
Código javascript:
Ver original
  1. <script type="text/javascript">
  2. if(typeof(xajax)!='undefined'){
  3.     if(xajax!=null){
  4.         xajax.callback.global.onRequest = function() {
  5.             document.getElementById('load_animate').style.display='';
  6.         }
  7.         xajax.callback.global.beforeResponseProcessing = function() {
  8.             document.getElementById('load_animate').style.display='none';
  9.         }
  10.     }
  11. }else{
  12.     document.getElementById('load_animate').style.display='none';
  13. }
  14. </script>

y el css correspondiente lo puede aplicar como desees:
Código CSS:
Ver original
  1. #load_animate{
  2.     position:fixed;
  3.     left:40%;
  4.     top:0px;
  5.     z-index:500;
  6.     height:13px;
  7.     width:208px;
  8.     background-image:url(../img/loading_bar.gif);
  9.     background-repeat:no-repeat;
  10. }