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

clearSelectedItems

Method which clears the selected items for the respective GridTableView client object. This method will clear the selected items from the table's child tables (meaningful in hierarchical grid only).

clearSelectedItems()

Example:

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

This method is only applicable when Row Selection of RadGrid is enabled.

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