Blazor Rich Text Editor Example - Autosave Editor
This sample demonstrates how to save the Rich Text Editor’s content automatically at regular intervals. The following demo saves the content after 5 seconds of idle time from last typed time.
Saving changes
Changes saved
Properties
The Rich Text Editor saves its content automatically when you focus out the editor, and you can save its content automatically at regular intervals based on the SaveInterval and AutoSaveOnIdle properties while editing.
- If AutoSaveOnIdle is set to true, the content is saved if the editor is idle for the number of milliseconds specified in the SaveInterval property.
- If AutoSaveOnIdle is set to false, the editor saves the content at the regular interval of milliseconds specified in the SaveInterval property.
true in this demo, and the SaveInterval is set to 5 seconds.
