0

In my XAF 21.2.4 Entity Framework Blazor application (With the Office options)

There is a business object property notated as

    [EditorAlias(EditorAliases.RichTextPropertyEditor)]
    public string Info { get; set; }

The Rich text editor displays content correctly when I run the app in localhost.

But when I deploy to an Azure app (Windows) no content displays.

I notice a message in the Chrome browser tools

[Violation] Forced reflow while executing JavaScript took 43ms
Kirsten
  • 15,730
  • 41
  • 179
  • 318

1 Answers1

1

Little late to the party. I had the same issue and solved it by turning on AzureCompatibility.

https://docs.devexpress.com/CoreLibraries/DevExpress.Utils.AzureCompatibility.Enable

SuperJens
  • 26
  • 2