Unplanned
Last Updated: 12 May 2021 18:26 by ADMIN
Bob
Created on: 12 May 2021 18:25
Category: Editor
Type: Bug Report
2
Adding the EditorPasteSettings tag breaks image pasting

---

ADMIN EDIT

A workaround is to initialize the RemoveAttributes list:

<TelerikEditor @bind-Value="@EditorContent">
    <EditorSettings>
        <EditorPasteSettings 
                             RemoveAttributes="@( new List<string>() )"
                            >
        </EditorPasteSettings>
    </EditorSettings>
</TelerikEditor>

@EditorContent

@code{
    string EditorContent { get; set; }
}

---

0 comments