Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/04/2013, 08:12
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
Dar estilo a un data-role.

Hola, por favor quisiera dar estilo a unas filas en Jquery mobile.
La lista que quiero poner es:
Código HTML:
Ver original
  1. <ul data-role="listview" data-inset="true">
  2.                   <li><a href="#">
  3.                     <h3>Página</h3>
  4.                     <p>Lorem ipsum</p>
  5.                   </a></li>
  6.                 </ul>

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
  1. $.each(data, function(i,item){
  2. html_user += '<tr ondblclick="pulsar(this, ' + *String.fromCharCode(39) + item.recambio + String.fromCharCode(39) *+ ');" >';
  3. html_user += '<td style="'+item.style+'"><input name="demo" type="radio" value="' + item.recambio + '"/></td>';
  4.  html_user += '<td  style="'+item.style+'">'+item.recambio+'</td>';
  5.  html_user += '<td  style="'+item.style+'">'+item.denominacion+'</td>';
  6.  html_user += '<td  style="'+item.style+'">'+item.coste+'</td>';
  7.  html_user += '<td  style="'+item.style+'">'+item.pvp+'</td>';
  8.  html_user += '<td  style="'+item.style+'">'+item.beneficio_total+'</td>';
  9.  html_user += '<td  style="'+item.style+'">'+item.existencias+'</td>';
  10.  html_user += '<td  style="'+item.style+'">'+item.existencias004+'</td>';
  11.  html_user += '<td  style="'+item.style+'">'+item.ubicacion+'</td>';
  12. html_user += '</tr>';
  13.  
  14. });  
  15.  }

Gracias