RadzenHtmlEditor UploadUrl

Hi, I'm new to blazor, so question would be quite ridiculous..

I'm trying to use RadzenHtmlEditor and placed UploadUrl to upload to S3.

However, it doesn't have Complete Method like RadzenUpload, so I cannot delete the files on S3 when I erase the picture in editor after I post the image in editor.

Is there any way to get Url parameter from RadzenHtmlEditor like RadzenUpload? Execute Method has only commandName and Editor...

I am not quite sure what you need. Do you want to get the upload URL ? You can probably get it via reference to the RadzenHtmlEditor component itself.

<RadzenHtmlEditor @ref=@myEditor ... />
@code {
   RadzenHtmlEditor myEditor;
}

Having a Complete event for the upload similar to RadzenUpload is a nice idea and we should probably implement it.

Yes, I want to get the uploaded Image URL when it is completed to upload image on editor.
I will try and reply here.
BTW, i just used HtmlAgilityPack to get all the urls from Editor lol

Thank you for considering to implement that method on RadzenHtmlEditor :slight_smile:

We have added the UploadComplete event and it will ship with the next release.

Thx for quick update!
I appreciate to use that component's method :slight_smile: