“Folder Tree” mode.
Private Sub Grid_CellBeginEdit(ByVal sender As Object, ByVal e As GridViewCellCancelEventArgs)
programName = DirectCast(Grid.Rows(e.RowIndex).Cells("program").Value, String)
with code in your example, i could not get the correct cell value because e.rowindex somehow is the wrong row... due to rearranging in tree mode...
It took me few hours to find out that your e.rowindex is reference to the non-tree mode grid... so how can I get user interaction during the tree mode?
Also your support ticket page is 404 error.
Thanks,
J.
Private Sub Grid_CellBeginEdit(ByVal sender As Object, ByVal e As GridViewCellCancelEventArgs)
programName = DirectCast(Grid.Rows(e.RowIndex).Cells("program").Value, String)
with code in your example, i could not get the correct cell value because e.rowindex somehow is the wrong row... due to rearranging in tree mode...
It took me few hours to find out that your e.rowindex is reference to the non-tree mode grid... so how can I get user interaction during the tree mode?
Also your support ticket page is 404 error.
Thanks,
J.