Spacebar and editing

This should be simple.. I want to override the "spacebar" behavior. Currently the spacebar begins editing a cell. I want to occasionally prevent this. Is there and event the I can return e.cancel = true when I want to prevent editing? Thanks

2 Replies

AD Administrator Syncfusion Team May 13, 2004 02:59 PM UTC

I would try CurrentCellKeyPress. You could also probably use CurrentCellStartEditing.
private void gridControl1_CurrentCellKeyPress(object sender, KeyPressEventArgs e)
{
	if(e.KeyChar == '' '' && !this.gridControl1.CurrentCell.IsEditing)
	    e.Handled = true;
}


AD Administrator Syncfusion Team May 13, 2004 04:18 PM UTC

perfect!!

Loader.
Up arrow icon