Hi,
I have an ultrawebgrid with a number of rows and one cell that can be editted within each row.
Does anyone know how to move to the next row from the activerow after an enter key.
I can see how to manually set the next activerow and cell to row 4 the problem is I need toselect the next row and I don't know how to find the row number of the activerow.
UltraWebGridGRNSelected.DisplayLayout.ActiveCell = UltraWebGridGRNSelected.Rows(4).Cells(9)
Thanks in advanceGraham.
Hello netdocs,
You may have to increment the index of the row to find the next active row. For example:
I++;
UltraWebGridGRNSelected.DisplayLayout.ActiveCell = UltraWebGridGRNSelected.Rows(I).Cells(9);
where I is the current selected row.
Please let me know.
Please let me know if you have any questions.