windowsforms-devexpress-dot-xtraeditors-dot-repository-dot-repositoryitemgridlookupedit-90a7127b.md
You don't need ServerMode property anymore.
Gets or sets whether server mode is enabled.
Namespace : DevExpress.XtraEditors.Repository
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[Browsable(false)]
[DefaultValue(false)]
[DXCategory("Data")]
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("You don't need ServerMode property anymore.")]
public bool ServerMode { get; set; }
<DXCategory("Data")>
<DefaultValue(False)>
<Browsable(False)>
<EditorBrowsable(EditorBrowsableState.Never)>
<Obsolete("You don't need ServerMode property anymore.")>
Public Property ServerMode As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true if server mode is enabled; otherwise, false.
|
Server mode is designed to efficiently handle large volumes of data. The entire recordset is never loaded into memory simultaneously. Instead, the GridLookUpEdit control requests data from a data store and displays it on screen in small portions, when required. In server mode, all data-aware operations are performed on the data server side.
See the Large Data Sources: Server and Instant Feedback Modes topic for more information.
See Also
RepositoryItemGridLookUpEdit Class