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

deselectItem

Method which deselects the table row passed as an argument or the row corresponding to the index passed as an argument. If you want to deselect all rows (meaningful with multi-row selection enabled), execute the clearSelectedItems() method instead.

deselectItem (gridItem) or deselectItem(index)
rowHTML row object -
The row that will be selected.
indexIntegerThe row corresponding to the index will be deselected.

Example:

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