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.
Does anyone know if there is a quick way to tell if you are in "edit mode" on a textbox when the currentCell_keyDown event fires?
I''m trying to listen on the keydown for the Insert/Delete keys. If they are pressed and you are not editting a textbox, I''d like to insert a new row/delete the current row. If you''re editting a textbox cell, I want those keys to work as they normally do.
Thanks,
Chad
ADAdministrator Syncfusion Team October 5, 2004 02:54 PM UTC
This is what I''m currently using on the currentCell_Keydown...
((GridControl)sender).CurrentCell.Renderer.Control.Focused
Doesn''t feel right though...
ADAdministrator Syncfusion Team October 5, 2004 03:00 PM UTC
grid.CurrentCell.IsEditing should be true when the currentcell is actively being edited.