Ticket T1049988
Visible to All Users

RecordsNavigationController for Blazor

created 3 years ago

Is there a Blazor descendant of RecordsNavigationController? I want to show NextObjectAction and PreviousObjectAction on specific detail views.

Answers approved by DevExpress Support

created 3 years ago (modified 2 years ago)

Hello,

Next/Previous Record Actions are now available in XAF Blazor applications. To check the improved record navigation, install v23.1.2+

Old answer

This functionality is not supported because currently Blazor ListView cannot be used as an > order provider. You can enable the NextObject and PreviousObject actions by specifying > your own order provider - however, in this case, the order of records may be different > because of grouping, sorting, and filtering. Here is an example:

C#
using DevExpress.ExpressApp; using DevExpress.ExpressApp.SystemModule; namespace MainDemo.Module.Blazor {     public class EnableRecordsNavigationController : ViewController<DetailView> {         public EnableRecordsNavigationController() {             TargetViewNesting = Nesting.Root;         }         protected override void OnActivated() {             base.OnActivated();             Frame.GetController<RecordsNavigationController>().Active.RemoveItem> ("TemporaryNotSupported");         }     }     public class BlazorRecordsNavigationController : RecordsNavigationController {         protected override void OnActivated() {             base.OnActivated();             OrderProviderSource.OrderProvider = new StandaloneOrderProvider(ObjectSpace, > ObjectSpace.GetObjects(View.ObjectTypeInfo.Type));             UpdateActionState();         }     } }

Since this functionality depends on the grid control's data binding mechanism, we cannot > say when it will be available out of the box. We will definitely take your request into > account.

Thanks,
Stanislav

    Comments (2)

      Thank you Stanislav B

      Georgiy G (DevExpress) 2 years ago

        Hello,

        Next/Previous Record Actions are now available in XAF Blazor applications. To check the improved record navigation, install v23.1.2+.

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.