I'm sure I'm just missing something simple here.
I've updated to the latest nuget package for Radzen Blazor components, and I'm attempting to add the HTMLEditor to my page.
Most of it works, however clicking on the image upload button, nothing happens. The expected dialog box doesn't appear, i'm getting nothing appear in my output window, i'm not seeing any events in the developer console of my browser.
I'm sure I must have just missed something, but I have no idea what. Any hints would be appreciated.
---edit---
continued playing, still no progress, but the same issue appears to happen with the add hyperlink button. at a guess it's something to do with the dialog service, but I've got
services.AddScoped<DialogService>();
services.AddScoped<NotificationService>();
in my startup file,
---edit---
Figured it out eventually.
had to add
@using Radzen.Blazor
<RadzenDialog />
<RadzenNotification />
to my mainlayout. This isn't mentioned anywhere in the documentation, so may need adding there at some point.