RadControls for ASP.NET AJAX
Method which clears the selected items in the grid (and all sub-levels in hierarchical grid
structure) on the client.
Example:
CopyJavaScript
function clearSelectedItems(sender, args) {
var grid = $find("<%=RadGrid1.ClientID %>");
grid.clearSelectedItems();
}
Note |
|---|
Please note that this method is only applicable when Row Selection of RadGrid is enabled. |
CopyASPX
<ClientSettings>
<Selecting AllowRowSelect="true" />
</ClientSettings>