Código PHP:
if(html_user == '') html_user = '<tr><td colspan="4" align="center">No se encontraron registros..</td></tr>';
Código Javascript:
Ver original
function filtrar() { $.ajax({ data: $("#frm_filtro").serialize()+ordenar, type: "POST", dataType: "json", url: "ajax.php?action=listar", beforeSend:function(){ $('.carga1').css('display','block'); $('.carga1').html("<img src='imagenes_menu/ajax-loader4.gif' align='center' /><br />Cargando..."); }, complete: function() { $(".carga1").show(); $(".carga1").hide(); }, success: function(data){ var html_user ='' ; if(data.length > 0){ $.each(data, function(i,item){ html_user += '<tr ondblclick="pulsar(this, ' + String.fromCharCode(39) + item.id_aviso + String.fromCharCode(39) + ');" >'; html_user += '<td ><input name="demo" type="radio" value="' + item.id_aviso + '"/></td>'; html_user += '<td>'+item.id_aviso+'</td>'; html_user += '<td>'+item.telefonos+'</td>'; html_user += '<td>'+item.name+' '+item.apellidos+'</td>'; html_user += '<td>'+item.localidad+'</td>'; html_user += '</tr>'; }); } if(html_user == '') html_user = '<tr><td colspan="4" align="center">No se encontraron registros..</td></tr>'; $("#data tbody").html(html_user); $('.carga').html(''); } }); }
Se puede hacer?
Gracias