State Persistence

13 Jun 20231 minute to read

You can sustain the entire widget model of EJMVC DatePicker even after form post or browser refresh by using EnablePersistence property. So the entire model values such as

  • Selected date
  • Highlighted date
  • Start and depth level

are stored in local storage / cookies of browser before page refreshes and reinitialized with the restored model after refresh.

  • CSHTML
  • @*persists the DatePicker model*@
    
        @Html.EJ().DatePicker("datePicker").EnablePersistence(true)