Hello Bruno,
"i" is a virtual variable, so you have to use your custom JS.
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
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!