BM
Babu Mannaravalappil
February 18, 2004 08:36 PM UTC
I forgot to say that I am just using Grid Control and not GridDataBoundGrid. I wanted to handle a row oriented event rather than the Cell oriented events. Is there a way to do this? Thanks for any info.
Babu.
AD
Administrator
Syncfusion Team
February 18, 2004 08:40 PM UTC
In a GridDataBoundGrid, there are RowEnter and RowLeave events.
In both GridDataBoundGrid and GridControl, there are CurrentCellMoving and CurrentCellMoved events. You can use grid.CurrentCell.MoveToRowIndex and grid.CurrentCell.MoveFromRowIndex to check if you are changing rows.
BM
Babu Mannaravalappil
February 20, 2004 07:30 PM UTC
Thanks Clay. That is exactly what I was looking for.
Babu.
>In a GridDataBoundGrid, there are RowEnter and RowLeave events.
>
>In both GridDataBoundGrid and GridControl, there are CurrentCellMoving and CurrentCellMoved events. You can use grid.CurrentCell.MoveToRowIndex and grid.CurrentCell.MoveFromRowIndex to check if you are changing rows.