bueno, en mi tortuosa incursion a los objetos dinamicos, ya me he pegado varios portasos.
bueno ahora el portaso es reconcer el value de un select dinamico.....
bueno como tambien tengo un checkbox seria bueno que me ayudaran con eso tambien.....
asi hago el select
f3 = document.getElementById('td1'+num);
// 1
var myarray=new Array(3)
myarray[0] = "Text"
myarray[1] = "Numero"
myarray[2] = "Compaq 686"
myarray[3] = "Dell 486"
myarray[4] = "Dell 586"
myarray[5] = "Dell 686"
myarray[6] = "IBM 486"
myarray[7] = "IBM 586"
myarray[8] = "IBM 686"
sele = document.createElement('select');
sele.name = 'Slctipo'+num; // 8
sele.id ='SlctipoID'+num;
for (i=0; i<8; i++) {
opt = document.createElement('option');
opt.value = i;
opt.innerHTML = myarray[i];
if(i==0)
{
opt.setAttribute('selected','selected');
}
sele.appendChild(opt);
}
f3.appendChild(sele);
asi lo trato de reconocer
function mostrar(l)
{
for (io=1; io<=num; io++)
{
if (document.getElementById('tr'+io))
{
var Strvalue;
var cualCampo ='textlargo'+io;
var sele ='Slctipo'+io;
if(document.forms["form10"][cualCampo].value != "")
{
alert (""+Strvalue );
numero++;
Strvalue = document.form10.elements[sele].value;
fi = document.getElementById('tabla2'); // 1
contenedor = document.createElement('input'); // 5
contenedor.type = 'text'; // 6 // 2
contenedor.id = 'hidden'+numero;
contenedor.value = Strvalue;
//contenedor.value = document.forms["form10"][sele].value;
//contenedor.value =document.forms['form10'].elements[sele].value;
fi.appendChild(contenedor); // 4}
}
else
{
// alert("No Existe!! : " + io);
}
}
}
Bueno, como ya me ha pasado Don IE no me lo reconocer, pero si el FF, cosa que mas que rara, ya es un tortura .......
bueno ahora solo espero ideas y esas cosas, ya que no se que puede ser