Ver Mensaje Individual
  #5 (permalink)  
Antiguo 10/10/2012, 08:05
Avatar de satjaen
satjaen
 
Fecha de Ingreso: septiembre-2012
Ubicación: Jaén (Andalucía)
Mensajes: 893
Antigüedad: 12 años, 2 meses
Puntos: 10
Respuesta: Condicion para que salga imagen Loading

Muchisimas gracias, por contestar porque en Frameworks y Plugins Javascript no me contestan, y no se si es porque no me entienden lo que quiero hacer o no se......
El caso es que no se como integrar el cod

Código Javascript:
Ver original
  1. function CargarDatos(_pagina,capa) {
  2. var
  3. ajax;
  4. ajax = ajaxFunction();
  5. ajax.open("POST", _pagina , true);
  6.  
  7. ajax.setRequestHeader("Content-Type",
  8. "application/x-www-form-urlencoded");
  9. ajax.onreadystatechange = function()
  10. {
  11.  
  12. if (ajax.readyState==1){
  13. document.getElementById(capa).innerHTML = "<img src='ajax-loader.gif' align='center' /><br /> Aguarde por favor...";
  14. }
  15.  
  16.  
  17. if (ajax.readyState == 4){
  18.  if(ajax.status == 200) {
  19. document.getElementById(capa).innerHTML =
  20. ajax.responseText;
  21. }
  22. }}
  23. ajax.send(null);
  24. }



En este otro:

Código Javascript:
Ver original
  1. function filtrar()
  2. {  
  3.                 $.ajax({
  4.         data: $("#frm_filtro").serialize()+ordenar,
  5.         type: "POST",
  6.         dataType: "json",
  7.         url: "ajax.php?action=listar",
  8.             success: function(data){
  9.     var html_user ='' ;
  10.     if(data.length > 0){
  11.         $.each(data, function(i,item){
  12.        
  13.        
  14.          
  15.  html_user += '<tr ondblclick="pulsar(this, ' +  String.fromCharCode(39) + item.num_usuario + String.fromCharCode(39)  + ');" >';
  16.  html_user += '<td ><input name="demo" type="radio" value="' + item.num_usuario + '"/></td>';
  17.  html_user += '<td id="row0" >'+item.num_usuario+'</td>';
  18.  html_user += '<td>'+item.telefono+'</td>';
  19.  html_user += '<td>'+item.nombre+' '+item.apellidos+'</td>';
  20.  html_user += '<td>'+item.poblacion+'</td>';
  21.  html_user += '</tr>';
  22.            
  23.                                  
  24.         });                    
  25.     }
  26.     if(html_user == '') html_user = '<tr><td colspan="4" align="center">No se encontraron registros..</td></tr>';
  27.     $("#data tbody").html(html_user);
  28. }
  29.  
  30.            
  31.       });
  32. }

Gracias