PDA

View Full Version : how to loop through all IDs of a view ?


carsten
02-15-2005, 09:19 AM
who can help me on this ?
I want to loop through all elements if a view, which are having a defined ID. Afterwards i want to write IDname and IDvalue to debug window.

I think it looks like this,
ok you see I am a newbie.

// Loop through
for ( var id in this.???IDLIST??? ) {
var name = id.getIDName();
var value = id.getValue();
Debug.write( name + " - " + value );
}

Is this possible without DataReplication ?