Skip to main content
A newer version of this page is available. .

ASPxClientGridViewSelectionEventArgs.isAllRecordsOnPage Property

Gets whether all rows displayed within a page have been selected or unselected.

Declaration

isAllRecordsOnPage: boolean

Property Value

Type Description
boolean

true if all rows displayed within a page have been selected or unselected; otherwise, false.

Remarks

To select all rows within a page, use the ASPxClientGridView.SelectAllRowsOnPage method. To unselect all rows, use the ASPxClientGridView.UnselectAllRowsOnPage method.

Note

If the selection has been changed on the server (the ASPxClientGridViewSelectionEventArgs.isChangedOnServer property returns true) the isAllRecordsOnPage property is not in effect. It returns false in any case. To learn more, see the ASPxClientGridView.SelectionChanged event description.

See Also