Ticket T963922
Visible to All Users

XAF Blazor - User Friendly Error Messages

created 4 years ago

Hello DevExpress Support,

In our test XAF Blazor app, we sometimes call an external API through a view-controller.

If the API returns an error status code, we would like to display a user-friendly error message. Ideally this user-friendly error message would look like a validation error.

Initially, we tried throwing an exception when the API returns an error code, however this error page is not user-friendly and displays a full stack-trace which is not required:

Clipboard-File-1.png

Is there a way that we could instead display a pop-up message or toast notification to show the error in a more user-friendly format?

Thanks very much for your consideration.

Regards,

Geoff.

Answers approved by DevExpress Support

created 4 years ago (modified 4 years ago)

Hello Geoffrey,

XAF's Blazor UI supports Text Notifications in v20.2.5. In older versions, you can emulate this functionality using one of the following options or use the intermediate build in the comments below.

1. ShowViewStrategy.ShowViewInPopupWindow
2. Standard JavaScript/ASP.NET Core Blazor APIs: https://www.google.com/search?q=blazor+show+modal+dialog.
3. UserFriendlyException as shown in the attached project. To implement it, do the following:
3.1. Check your SolutionName.Blazor\\Pages\_Host.cshtml file and make sure it contains the following line (if it is missing, add it):

Razor
<component type="typeof(AlertsHandler)" render-mode="Server" />

3.2. Throw UserFriendlyException from an Action:

C#
namespace SolutionName.Module.Controllers { public partial class UserFriendlyExceptionViewController : ViewController { public UserFriendlyExceptionViewController() { InitializeComponent(); SimpleAction testAction = new SimpleAction(this, "TestException", DevExpress.Persistent.Base.PredefinedCategory.Edit); testAction.Execute += (s, e) => { throw new UserFriendlyException("Test UserFriendlyException"); }; } } }

Clipboard-File-1.png

    Show previous comments (4)
    GJ GJ
    Geoffrey Jones 4 years ago

      Hi Dennis,

      Option 3 (UserFriendlyException) worked beautifully and met our needs perfectly. We have implemented this now in our view controller. Thanks for the great support!

      Hopefully I will get a chance to test the Text Notifications feature in the near future and leave feedback.

      Cheers,

      Geoff.

      J J
      Johnathon D. Smith 4 years ago

        Any chance that we can get this through the NuGet feed in the near future.  We use automated pipelines to deploy, and we can do that with the installed version.

        In any case, I love the support.  You guys are amazing.

        Thanks,

        Johnathon D Smith

        Dennis Garavsky (DevExpress) 4 years ago

          @Geoff: Thank you for your feedback.
          @Johnathon: Intermediate builds are unavailable via the online NuGet feed; only via the local NuGet feed from the installer. I have informed our NuGet team of your request. If you cannot use the local NuGet feed, please just wait for 1-2 weeks for the official v20.2.5 release.

          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.