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

RecordsNavigationController.NextObjectAction Property

Provides access to the RecordsNavigationController‘s NextObject Action.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public SimpleAction NextObjectAction { get; }

Property Value

Type Description
SimpleAction

A SimpleAction object representing the NextObject Action.

Remarks

The NextObject Action is intended to navigate to the next object in a collection source. When using this Action for a List View, the next object in the List View’s editor is selected. When using this Action in a Detail View that displays an object currently selected in a List View, the next object in the List View’s editor is shown in the Detail View.

In a Windows Forms application:

RecordsNavigationController_NextAction_Win

In an ASP.NET application:

RecordsNavigationController_NextAction_Web

This Action’s Execute event is handled by the MoveToNext method. If you need to customize the way this Action works, handle its Execute event, or inherit from the RecordsNavigationController, and override the MoveToNext method.

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

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

Information on the NextObject Action is available in the Application Model‘s ActionDesign node. To access it, use the Model Editor.

Note

A ListEditor should support the IControlOrderProvider interface to support the NextObjectAction Action.

See Also