how do you add the date to a label I have the code just dont know how to map
var today = new Date();
Appery("TodaysDate").text(today.toLocaleDateString());
how do you add the date to a label I have the code just dont know how to map
var today = new Date();
Appery("TodaysDate").text(today.toLocaleDateString());
Hello,
Please clarify, do you need to do the same in the mapping? Is so, plese add a JS below to the mapping to the label:
prevar today = new Date();
$(element).text(today.toLocaleDateString());/pre