State Persistence
8 Aug 20171 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.
@*persists the DatePicker model*@
@Html.EJ().DatePicker("datePicker").EnablePersistence(true)