Hi Graham,
Greetings from Syncfusion
support.
Yes, we have changed the type
of AllowedTypes property to a List<string> in the SfRichTextEditor
component. please find the below code for your reference.
Code snippet:
|
<SfRichTextEditor
EnableAutoUrl="@AutoUrl">
<RichTextEditorImageSettings AllowedTypes="@allowedTypes" ></RichTextEditorImageSettings>
</SfRichTextEditor>
@code {
private bool AutoUrl = false;
private
List<string> allowedTypes = new List<string> {
".jpg",".png", ".gif" };
}
|
We will change our documentation page and publish it
in any one of our upcoming releases.
Regards,
Buvana S