How can I get a selected value from the datepicker to appear as a date on a label?
Posted: Tue May 05, 2015 2:18 pm
by Jack Barrett
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.
How can I get a selected value from the datepicker to appear as a date on a label?
Posted: Wed May 06, 2015 6:26 am
by Evgene Karachevtsev
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
How can I get a selected value from the datepicker to appear as a date on a label?
Posted: Wed May 06, 2015 1:32 pm
by Jack Barrett