Skip to main content

ASPxClientGridView.UnselectAllRowsOnPage Method

In This Article

Deselects the rows on the current page.

#Declaration

TypeScript
UnselectAllRowsOnPage(): void

#Remarks

The UnselectAllRowsOnPage method deselects all rows within the current page.

When the row selection changes, the control raises the client-side ASPxClientGridView.SelectionChanged or the server-side ASPxGridBase.SelectionChanged event (based on the ProcessSelectionChangedOnServer property value).

<dx:ASPxGridView ClientInstanceName="grid" runat="server">
    <%--...--%>
</dx:ASPxGridView>
grid.UnselectAllRowsOnPage();

To select all rows within the current page, call the SelectAllRowsOnPage method.

See Also