I would like to store string value at exit stage & retrieve it in application open stage. I am unable to store data directly by using webix.storage.local.put()
Asked
Active
Viewed 98 times
1 Answers
2
You can use unload event to store the data
webix.attachEvent("unload", function(){
webix.storage.local.put('t1-val', $$('t1').getValue() );
})
Check the next sample

Aquatic
- 5,084
- 3
- 24
- 28