Skip to main content
.NET 6.0+

RecordsNavigationController.NextObjectAction Property

Provides access to the RecordsNavigationController‘s Next Object Action.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public SimpleAction NextObjectAction { get; }

Property Value

Type Description
SimpleAction

A SimpleAction object that is the Next Object Action.

Remarks

Use the Next Object Action to navigate to the next object in a collection source. In a List View, this Action selects the next object. In a corresponding Detail View, the Action displays properties of the next object.

ASP.NET Core Blazor
Records Navigation Controller Next Object Action in ASP.NET Core Blazor, DevExpress
Windows Forms
Records Navigation Controller Next Object Action in Windows Forms, DevExpress
ASP.NET Web Forms
Records Navigation Controller Next Object Action in ASP.NET Web Forms, DevExpress

Use the MoveToNext method to handle the Next Object Action’s Execute event.

To customize the Action, handle its Execute event or inherit from DevExpress.ExpressApp.Blazor.SystemModule.BlazorRecordsNavigationController (ASP.NET Core Blazor), RecordsNavigationController (Windows Forms), or DevExpress.ExpressApp.Web.SystemModule.WebRecordsNavigationController (ASP.NET Web Forms) and override the MoveToNext method.

The Next Object Action is active when the current List View’s editor supports focused row selection.

The Next Object Action is enabled when an object is selected in a List View. When the currently selected object is the last one in the collection, the Next Object Action is disabled.

Information on the Next Object Action is available in the Application Model‘s IModelActionDesign node. To access it, use the Model Editor.

Note

A ListEditor should implement the IControlOrderProvider interface to support the Next Object Action.

See Also