'value change' event for the toggle inside a dynamic list
Inside this there is another real issue because the val() function for the toggle returns always the same value when the toggle is inside the list.
Find it here:
http://appery.io/app/view/42ec9b46-87...
It is necessary to manually change the val of the toggle in the "value change" event for the toggle in this way:
if (Appery('mobiletoggle_21').val() == "off"){
Appery('mobiletoggle_21').val("on").refresh();
} else {
Appery('mobiletoggle_21').val("off").refresh();
}