ModificationsController.ModificationsCheckingMode Property
Applicable to List Views. Specifies when the modifications made in an editable List View are committed.
Namespace: DevExpress.ExpressApp.SystemModule
Assembly: DevExpress.ExpressApp.v24.2.dll
NuGet Package: DevExpress.ExpressApp
#Declaration
[DefaultValue(ModificationsCheckingMode.Always)]
public ModificationsCheckingMode ModificationsCheckingMode { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Modifications |
Always | A Modifications |
Available values:
Name | Description |
---|---|
Always | Changes are committed when a user proceeds to the next record and when the List View is closed. Do not enable this mode when the new item row (see IModel |
On |
Changes are committed when the List View is closed. |
#Remarks
This property is set to Always in all XAF projects.
In WinForms applications, the value is overridden and set to OnCloseOnly for List Views. This means, data modifications are committed when a List View is closed. Set the ModificationsCheckingMode property to ModificationsCheckingMode.Always to commit modifications each time a record is modified. Changes will be committed and confirmation will be displayed when a user proceeds to the next record in the editable List View.
using DevExpress.ExpressApp.SystemModule;
using DevExpress.ExpressApp.Win.SystemModule;
// ...
public class MyWinModificationsController : WinModificationsController {
protected override void OnActivated() {
base.OnActivated();
this.ModificationsCheckingMode = ModificationsCheckingMode.Always;
}
}