Steps to recreate:
Hello, Graeme,
Thank you for reporting this.
You can use the following workaround until a fix gets ready:
this.radGridView1.CurrentRowChanged += RadGridView1_CurrentRowChanged;
private void RadGridView1_CurrentCellChanged(object sender, CurrentCellChangedEventArgs e)
{
if (e.CurrentCell.ColumnInfo is GridViewCommandColumn && e.NewCell != null)
{
GridCommandCellElement newCell = this.radGridView1.TableElement.GetCellElement(e.NewCell.RowInfo, e.NewCell.ColumnInfo) as GridCommandCellElement;
newCell.CommandButton.Focus();
}
}
Regards,
Nadya | Tech Support Engineer
Progress Telerik
Enjoyed our products? Share your experience on G2 and receive a $25 Amazon gift card for a limited time!