How to iterate over all rows?
How to get rowid from row? Needed because getCell expects rowid.
I need to perform an action with all cells so I would like to do the following (pseudo code):
for row in grid.allrows
for cell in row.allcells
cellval = grid.getCell(row.rowid, cell.name)
How can I do that?
Thanks, Harmen
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top