New to Telerik UI for WPFStart a free 30-day trial

Always focus the first cell on insert

Updated on Jul 17, 2026

When you insert a new item (via the Insert key or the insert row) RadGridView will check which is your current column and focus that column in the newly added and probably blank row. This picture explains it better:

Telerik UI for WPF RadGridView inserting a new row with focus initially placed in the current column instead of the first cell

This article shows how to make always the first column be focused when a new item is about to be inserted. You need to subscribe to the AddingNewDataItem event of the RadGridView and set the current column in its event handler:

C#
	private void clubsGrid_AddingNewDataItem(object sender, Telerik.Windows.Controls.GridView.GridViewAddingNewEventArgs e)
	{
	    var grid = e.OwnerGridViewItemsControl;
	    grid.CurrentColumn = grid.Columns[0];
	}

Now, no matter which is the current column, when you insert a new item - the first cell will always get the focus.

Not finding the help you need?
Contact Support