RadControls for ASP.NET AJAX
Method which clears the active row in the grid. The setting will be persisted across
postbacks/ajax requests.
Example:
CopyJavaScript
function clearActiveRowInGrid(sender, args) {
var grid = $find("<%=RadGrid1.ClientID %>");
grid.clearActiveRow();
}
Note |
|---|
Please note that this method will work only when Keyboard Navigation and Row Selection of RadGrid are enabled. |
CopyASPX
<ClientSettings AllowKeyboardNavigation="true">
<Selecting AllowRowSelect="true" />
</ClientSettings>