Hola, por favor quería saber si puedo darle estilo a una fila del siguiente código:
Código Javascript
:
Ver originalfunction 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 onclick="pulsar1(this, ' + *String.fromCharCode(39) + item.id_aviso + String.fromCharCode(39) *+ ');" ondblclick="pulsar(this, ' + String.fromCharCode(39) + item.id_aviso + String.fromCharCode(39) *+ ');" >';
html_user += '<td><input name="demo" type="checkbox" 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.calle+'</td>';
html_user += '<td>'+item.localidad+'</td>';
html_user += '<td>'+item.aparatos+'</td>';
html_user += '<td>'+item.marcas+'</td>';
html_user += '<td>'+item.facturacion+'</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('');
Tengo que aclarar que lo que quiero es cambiar el estilo de la fila dependiendo de el valor del
item recibido. Es decir si por ejemplo el valor del item facturacion es igual a 1 cambiar el color de la fila a color rojo.
Gracias un saludo