New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

set_activeRow()

Property which marks the row passed as an argument as active and highlighted.

set_activeRow(rowObject)
rowObject GridDataItem object The row that will be set as active.

Example:

function setActiveRow() {
    var grid = $find("<%=RadGrid1.ClientID %>");
    var masterTableView = grid.get_masterTableView();
    var dataItems = masterTableView.get_dataItems();
    grid.set_activeRow(dataItems[0].get_element());            
}
In this article