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>