Hello She,
On value change event of datepicker please save the date from datepicker in local storage variable and then on the same event set text of the desired label from local storage variable. Please see the screenshots
hi sir,
i want my date format will be like this in the label
mmddyy
everytime i click the dates.
here is my code, but its not working well.
Appery("lblLogDate").text( $.datepicker.formatDate("mmddyy", new Date()) );
btw thanks for responding
She,
What is your date format in datepicker?
m-d-yy
i want to be the format in my label is no separator
like the left screenshot
here is my code in Java Run
Appery("lblLogDate").text( $.datepicker.formatDate("mmddyy", new Date()) );
She,
You shouldn't use formatDate in this case. Just remove the "-" character from a string
preAppery("lblLogDate").text( Apperyio("mobiledatepickerName").getAttr('defaultDateValue').replace(/-/g, ""));/pre
thank you now it works ![]()