Skip to main content

Server Mode

  • 2 minutes to read

The server mode is a special binding mode designed to handle massive amounts of data. Server-side data processing and on-demand data loading provide fast editor initialization and a smooth user experience regardless of the size of the data source.

EditorsServerMode

The following data editors support the server mode natively:

Overview

The editor running in server mode loads data in small portions as the user scrolls through the records. This approach significantly speeds up the editor initialization.

Additionally, you can use the asynchronous server mode. Asynchronous server mode ensures that the data loading operations are performed in a background thread, keeping the user interface responsive. The image below shows a combo box loading data in asynchronous server mode.

cmbAsyncServerMode

Note

The editors listed above support asynchronous server mode natively starting with version 16.1.

Activating the server mode

To activate the server mode, you need to bind the editor’s ItemsSource property to one of the following data sources:

Limitations

  • When a lookup control is bound to an asynchronous data source and is used in in-place mode inside the GridControl, its values cannot be exported or printed correctly.

  • Multi-select editors do not support server mode data sources.