Forum Discussion
Ryan_Moran
12 years agoValued Contributor
function FindRow(Grid, ColumnId, Value){
for (var i=0; i < Grid.Rows.Count; i++){
if (Grid.wValue(i,ColumnId).OleValue == Value){
return i;
}
}
return -1;
}
function FindRow(Grid, ColumnId, Value){
for (var i=0; i < Grid.Rows.Count; i++){
if (Grid.wValue(i,ColumnId).OleValue == Value){
return i;
}
}
return -1;
}