I need to include date picker in my form, i installed pickaday addon and aaded it to my template.
how can i get the value of it from template and manipulate it.
i tried this
{{pikaday-input value=pickaday format=“MM/DD/YYYY” class=“form-control” }}
let date = this.get(“pickaday”);
Can you give a little more information? Are you trying to do this from a component template? Or elsewhere? Can you include any relevant code?
I use ember-cli-bootstrap-datepicker that uses Javascript native Date objects instead of ISO date strings. It seem pikaday-input works the same way. Just set startDate on te component or controller like this and you can manipulate it.
ember-cli-bootstrap-datepicker
startDate
https://github.com/edgycircle/ember-pikaday/blob/master/tests/dummy/app/controllers/application.js
In the template:
{{pikaday-input value=startDate format='DD.MM.YYYY'}} {{startDate}}