Blazored / AutoSaveEditForm

A replacement for the default EditForm component which will auto save a form until it is successfully submitted

Home Page:https://blazored.github.io/AutoSaveEditForm/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ability to choose between local and session storage

chrissainty opened this issue · comments

We don't currently allow the developer to choose where to store the saved form model, it's hardcoded to local storage.

This should be configurable by the developer via a parameter on the BlazoredAutoSaveEditForm component.

[Parameter] public StorageTypes StorageType { get; set; }

public enum StorageTypes
{
    LocalStorage,
    SessionStorage
}

Hey Chris, just wanted to confirm this is not already being worked on, I'd like to grab it!

Hey @ThaRaven403, yes, it's still available and it's all yours! :) Thanks for the help.

Glad to help! If you're in need of some help, feel free to let me know!