PrithiviRajG / Ionic-3-Native-Date-Picker-example

This is the Ionic 3 example code for Date-picker plugin https://ionicframework.com/docs/native/date-picker/
2 stars 1 forks source link

Updating a datepicker #1

Closed sshaik305 closed 7 years ago

sshaik305 commented 7 years ago

Do anyone have idea on how to pass the date to the date picker for updating a form

I thought of passing the date along with the following code let selectedDate = '24/11/2017'; this.datePicker.show({ date: selectedDate, mode: 'date', minDate: new Date(), }) but it showing that selectedDate is not defined, any suggestions/fixes for this.. Thanks in advance guys

PrithiviRajG commented 7 years ago

Declare date likelet selectedDate = new Date("11/24/2017"); to use the date. If you want current date use let selectedDatedate = new Date();

sshaik305 commented 7 years ago

Thank you very much Prithvi... You made my day great