Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
595
Move to the next row after editing a cell?
posted

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 to
select 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 advance

Graham.

 

Parents
  • 7570
    posted

    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. 

Reply Children
No Data