Hi
I'm trying to figure out how to get my images from my database, once they have been inserted.
Realistically i need the path to be a route to a controller with the "GUID" that my image has been given as an ID, when it was saved, like this:
<SfRichTextEditor @bind-Value="@BindingValue" Placeholder="@PlaceholderText">
<RichTextEditorToolbarSettings Items="@_tools" Type="ToolbarType.MultiRow"/>
<RichTextEditorFontFamily Default="Arial"></RichTextEditorFontFamily>
<RichTextEditorImageSettings SaveUrl="api/media/saveimage" Path="@($"api/media/{imageId}")"></RichTextEditorImageSettings>
</SfRichTextEditor>
I cannot figure out how to set this imageId in the path, and all your examples points to a folder, which i'm not interrested in.
Can you help me here?