How can I pick a value from Datepicker?
Posted: Tue Feb 04, 2014 10:56 pm
How can I pick a value from Datepicker?
I have tested Appery('Datepickername').val() and Appery('Datepickername').text() and anything seems to work...
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/
How can I pick a value from Datepicker?
I have tested Appery('Datepickername').val() and Appery('Datepickername').text() and anything seems to work...
Hello -
Try this:
pre
code$("[name='Datepickername']").find('input').attr('id','inputStartDate');/code
codevar inputdate = $("#inputStartDate").val();/code
code
alert (inputdate);
/code
/pre
thanks!