JavaScript/jQuery CardView - RemoteOperations

Notifies CardView of the server's data processing operations.

import { RemoteOperations } from "devextreme/ui/card_view"
Type:

Object

Server-side data processing improves the UI component's performance on large datasets. When the server does not implement particular operations (and/or the corresponding remoteOperations fields are false) they are executed on the client. Note that the UI component may send queries to the server while executing a client-side operation.

NOTE
Paging, filtering, and sorting are performed on the server for the ODataStore, but you can change them to the client side by setting the corresponding remoteOperations fields to false. Other operations are always client-side.

filtering

Specifies whether filtering must be performed on the server.

Type:

Boolean

Default Value: false

grouping

Specifies whether grouping must be performed on the server.

Type:

Boolean

Default Value: false

Grouping is required only when a user can filter data using a header filter.

paging

Specifies whether paging must be performed on the server.

Type:

Boolean

Default Value: false

sorting

Specifies whether sorting must be performed on the server.

Type:

Boolean

Default Value: false