Ver Mensaje Individual
  #3 (permalink)  
Antiguo 31/08/2009, 12:44
jtorresrios
 
Fecha de Ingreso: septiembre-2008
Mensajes: 7
Antigüedad: 15 años, 8 meses
Puntos: 0
De acuerdo Respuesta: Problema con Objetos

Listo amigos..
encontre la solucion al problema..
estaba asi
Código:
...
strHtml += "<tr><td id = '" + arrItems[x][0] + "' onmouseover='CambioEstilo(this,1);' onmouseout='CambioEstilo(this, 2);' onclick='Selecciona(this.id, \"" + div.id + " \" , \"" + cmb.id + " \", \"" + txt.id + " \" );' >" + arrItems[x][1] + "</td></tr>";
...
y debe ser asi
Código:
...
strHtml += "<tr><td id = '" + arrItems[x][0] + "' onmouseover='CambioEstilo(this,1);' onmouseout='CambioEstilo(this, 2);' onclick='Selecciona(this.id, \"" + div.id + "\" , \"" + cmb.id + "\", \"" + txt.id + "\" );' >" + arrItems[x][1] + "</td></tr>";
...
Realmente no se nota la diferencia, pero el JavaScript si.... , el detalle es los espacios entre cmb.id + " \" debe ser cmb.id + "\"
Gracias por la respuesta Adler