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

VirtualServerModeSource.AcquireInnerList Event

This event can be handled to provide an inner list that will be storage for rows fetched using the VirtualServerModeSourceā€™s events. To enable CRUD operations in a bound Data Grid, you need to provide an inner list that supports these operations. If no inner list is supplied (or you do not handle the AcquireInnerList event), CRUD operations are disabled in the grid control.

Namespace: DevExpress.Data

Assembly: DevExpress.Data.v18.2.dll

Declaration

public event EventHandler<VirtualServerModeAcquireInnerListEventArgs> AcquireInnerList

Event Data

The AcquireInnerList event's data class is DevExpress.Data.VirtualServerModeAcquireInnerListEventArgs.

Remarks

The AcquireInnerList event fires on the VirtualServerModeSource initialization. Handle this event to provide:

If the inner list supports CRUD operations, these operations are available in the bound Data Grid. If the inner list is not provided, CRUD operations are disabled.

See Also