Avatar

Level 10

The below code can help you get access to each row inside a static Table. You can put your processing statements inside the If condition where I placed the messageBox statement.

for (i=0;i<Table1.nodes.length;i++){
if(Table1.nodes.item(i).name.substr(0,3)=="Row")
  xfa.host.messageBox(Table1.nodes.itemi).name);
}

Thanks

Srini