I am trying to make it so that when I go into the Datepicker and select a date that date appears on a label I have added. my app is PersonalAppBarrett and it is shared.
I am trying to make it so that when I go into the Datepicker and select a date that date appears on a label I have added. my app is PersonalAppBarrett and it is shared.
Hello Jack,
Please try the following code
precodevar Date1= $("[name=FirstDate] input").val(); //where FirstDate is the name of datepicker
Apperyio("label1").text(Date1);//where label1 is the name of label/code/pre