New to Telerik UI for ASP.NET AJAXStart a free 30-day trial

Focus the Textboxes in the Edit Control

When using either a UserControl or Edit forms to update or insert data in Telerik RadGrid, you may need to set the focus on one of the textboxes, contained in the edit form.You need to attach to the ItemCreated event, and get a reference to the user control, and the textbox within it. The particular approach demonstrated here adds a literal control to Telerik RadGrid, containing JavaScript code. This JavaScript code locates the textbox, by its clientID, and both sets the focus on it, and selects it, to provide a better visual representation of the present editing context.

The code below demonstrates the details:

C#
protected void RadGrid1_ItemCreated(object sender, Telerik.Web.UI.GridItemEventArgs e)
{
    if (e.Item is GridEditFormItem && e.Item.IsInEditMode)
    {
        UserControl MyUserControl = e.Item.FindControl(GridEditFormItem.EditFormUserControlID) as UserControl;
        string script = String.Format("$get('{0}').focus(); $get('{0}').select();", MyUserControl.FindControl("TextBox7").ClientID);
        ScriptManager.RegisterStartupScript(Page, typeof(Page), "myscript", script, true);
    }
}

An alternative approach can be to attach to the ItemDataBound event handler. In the event handler, we can check if the item is of type GridEditableItem, and whether it is in edit mode. If these two conditions are satisfied, we can get a reference to the textbox for a particular item and set the focus for its.This is demonstrated in the code sample below:

C#
protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e)
{
    if (e.Item is GridEditableItem && e.Item.IsInEditMode)
    {
        GridEditableItem form = (GridEditableItem)e.Item;
        TextBox dataField = (TextBox)form["ColumnUniqueName "].Controls[0];
        dataField.Focus();
    }
}
Not finding the help you need?
Contact Support