JavaScript/jQuery CardView - RemoteOperations
Notifies CardView of the server's data processing operations.
import { RemoteOperations } from "devextreme/ui/card_view"
Type:
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.grouping
Specifies whether grouping must be performed on the server.
Type:
Default Value: false
Grouping is required only when a user can filter data using a header filter.
Feedback