Skip to main content

autoSave

autoSave: boolean

this property controls the automatic saving of data in the editor. The default value is true.

Usage

Disabling auto-saving

<Editor {items} autoSave={false} />

This example sets the autoSave property to false, requiring user action to save data.

Enabling auto-saving

<Editor {items} autoSave={true} />

This example sets the autoSave property to true, allowing data to be saved automatically on any changes.