Hello,
I want make the App that save the checklist selections so that if I check three boxes there, then close the screen or close the app and go back there - those three checkboxes will still be checked.
for Storing selected checklist I use following code on Value change event of mobilecheckboxgroup
var ourFinalArray = [];
Appery("mobilecheckboxgroup_23").find("input:checked").each(function(){
ourFinalArray.push($(this).val());
});
localStorage.setItem("names",JSON.stringify(ourFinalArray));
Now How can I retrieve all selected items from localStorage and check the listview item according on load of page.