The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
I want to be able to disable entry into a grid row based on data in the bound row of the datasource. If the previous row was a lower index than the disabled row then I want to move the cursor to the next enabled row higher, and vice versa for lower. Is there an event that detects row changes and provides arguments for previous and next rows? I feel sure I have seen it somewhere but can''t find it now.
ADAdministrator Syncfusion Team May 17, 2004 11:07 AM UTC
Try using CurrentCellMoving or CurrentCellMoved. In your handler, you can use grid.CurrentCell.MoveFromRowIndex and grid.CurrentCell.MoveToRowIndex to decide whether you are changing rows, and what the rows are.
PNPatrick NobleMay 17, 2004 11:35 AM UTC
Clay
Thanks yet again for lightning fast response!
Pat
>Try using CurrentCellMoving or CurrentCellMoved. In your handler, you can use grid.CurrentCell.MoveFromRowIndex and grid.CurrentCell.MoveToRowIndex to decide whether you are changing rows, and what the rows are.