How i map the (0,1,2,3,4...100) from a array in localstorage.
Hello Bruno,
"i" is a virtual variable, so you have to use your custom JS.
Can I have an example?
Hello Bruno,
Unfortunately custom JS is outside the scope of our support: http://devcenter.appery.io/support-po...
You may consider purchasing Advisory Pack to get more in-depth help on this question. Here is more information about it: http://appery.io/services/#Advisory_Pack
I am not asking support for custom JS. What I don't know (or find in support) is HOW I GET THE that is being processed AND RETURN TO LABEL.
Is not working doing something like this IN CUSTOM JS:
var personsOnLocalStorage = Apperyio.storage.personsList.get();
for (i=0;i<personsOnLocalStorage.length;i++){
.......
retun i
}
You can put it on the complete event with JS:
prevar arr = $("[name=listitemName]");
for (var i = 0; i < arr.length; i++){
$(arr).find("[name=labelName]").text(i);
});/pre
It worked! Thanks!