Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/11/2014, 14:07
Samka
 
Fecha de Ingreso: mayo-2011
Ubicación: Entre Navarra y Aragón
Mensajes: 96
Antigüedad: 13 años, 6 meses
Puntos: 0
Respuesta: borrar antes que listar

Cita:
Iniciado por Djoaq Ver Mensaje
Pon el código que tengas hecho y así podremos ayudarte.
Un saludo!
perdona, no me di cuenta

Código Javascript:
Ver original
  1. $("#list-admins table").on("click", ".borrar", function(){
  2.     var idAdmin=$(this).attr('id');
  3.     var API_URIAdmin = "http://localhost/administrador/";
  4.     $.ajax({
  5.         type:'DELETE',
  6.         crossDomain: true,
  7.         url:API_URIAdmin+idAdmin,
  8.         dataType:"json",
  9.         beforeSend: function() {
  10.         },         
  11.         success:function(response) {
  12.             json=response
  13.         },    
  14.         error:function(jqXHR, data, textStatus, errorThrown) {
  15.             console.log(data);
  16.             console.log(errorThrown);
  17.         }
  18.     });
  19. });
  20. $("#list-admins table").on("click", ".borrar", function(){ 
  21.     $.ajax({
  22.         type:'GET',
  23.         crossDomain: true,
  24.         url:API_URIAdmin,
  25.         dataType:"json",
  26.         beforeSend: function() {
  27.         },         
  28.         success:function(response) {
  29.             json=response
  30.             $("#list-admins table tr").remove();
  31.             for(var i=0; i<json.length;i++){
  32.                 $("#list-admins table").append("<tr><td><img src='"+json[i]['imgPerfil']+"' /></td><td><span>"+json[i]['usuario']+"</span></td><td><span>"+json[i]['email']+"</span></td><td  class='borrar' id='"+json[i]['idAdministrador']+"'><img src='./../../images/icon/trash.png' style='height:24px;' /></td></ul>")
  33.             }
  34.         },    
  35.         error:function(jqXHR, data, textStatus, errorThrown) {
  36.             console.log(data);
  37.             console.log(errorThrown);
  38.         }
  39.     });
  40. });