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

clearSelectedItems

Method which clears the selected items in the grid (and all sub-levels in hierarchical grid structure) on the client.

clearSelectedItems()

Example:

function clearSelectedItems(sender, args) {
    var grid = $find("<%=RadGrid1.ClientID %>");
    grid.clearSelectedItems();
}

Please note that this method is only applicable when Row Selection of RadGrid is enabled.

<ClientSettings>
    <Selecting AllowRowSelect="true" />
</ClientSettings>     
In this article