Buenas gente...
 
estoy tratando de ingresar datos en un Record set...
 
la historia es la siguiente:
 
leo un xml con la siguiente forma:
<inbox>
	<email>
		<id>1</id> 
		<priority>1</priority>
		<from>[email protected]</from>
		<name>un nombre</name>
		<subject>even testen</subject>
		<received>05-16-2003</received>
	</email>
	<email>
		<id>5</id>
		<priority>1</priority>
		<from>[email protected]</from>
		<name>nombre</name>
		<subject>even testen</subject>
		<received>05-15-2003</received>
	</email>
                .
                .
                .
</inbox>
 
//new RecordSet (colunmNames)
//columnNames An array of strings in which each string is a name of one of the RecordSet columns. 
oRS = new RecordSet(headingsArray); //<-esto funciona correcto..
 
ESTE ES EL PROBLEMA....(a modo de ejemplo)
//rc.addItem({firstname:"Tim", lastname:"Chung", alias:"CrudDog", securitycode:"A", country:"UK", pokes:5});
 
COMO GENERO ALGO ASI, DINAMICAMENTE.....
 
alguna ayudita agradecida por adelantado...
edgardo 
  
 
