Hola, por favor quisiera dar estilo a unas filas en Jquery mobile.
La lista que quiero poner es:
En esta lista pondría los item.Pero el archivo donde quiero ponerlo es un js y no se como hacerlo. Así es como lo tengo ahora mismo:
js.js
Código Javascript
:
Ver original$.each(data, function(i,item){
html_user += '<tr ondblclick="pulsar(this, ' + *String.fromCharCode(39) + item.recambio + String.fromCharCode(39) *+ ');" >';
html_user += '<td style="'+item.style+'"><input name="demo" type="radio" value="' + item.recambio + '"/></td>';
html_user += '<td style="'+item.style+'">'+item.recambio+'</td>';
html_user += '<td style="'+item.style+'">'+item.denominacion+'</td>';
html_user += '<td style="'+item.style+'">'+item.coste+'</td>';
html_user += '<td style="'+item.style+'">'+item.pvp+'</td>';
html_user += '<td style="'+item.style+'">'+item.beneficio_total+'</td>';
html_user += '<td style="'+item.style+'">'+item.existencias+'</td>';
html_user += '<td style="'+item.style+'">'+item.existencias004+'</td>';
html_user += '<td style="'+item.style+'">'+item.ubicacion+'</td>';
html_user += '</tr>';
});
}
Gracias