Thank you for your reply. I'm sorry for being ignorant, but as I'm all new to this could you please tell me how to get the data from the Javascript array to the appery component? I am not using the appery backend database only browser localstorage and can get the data to a JavaScript array but don't...
I store this multidimensional array in localstorage : var log = [["a","b","c","d","e"],["1","2","3","4","5"]]; localStorage.log = JSON.stringify(log); I know I can use JSON.parse to get the array, but...