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

set_activeRow()

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

set_activeRow(rowObject)
rowObjectGridDataItem objectThe row that will be set as active.

Example:

JavaScript
function setActiveRow() {
    var grid = $find("<%=RadGrid1.ClientID %>");
    var masterTableView = grid.get_masterTableView();
    var dataItems = masterTableView.get_dataItems();
    grid.set_activeRow(dataItems[0].get_element());            
}
Not finding the help you need?
Contact Support