katemihalikova / ion-datetime-picker

Date and/or time picker for awesome Ionic framework
MIT License
168 stars 101 forks source link

Open the popup with with different current date information #17

Closed okyne-design closed 8 years ago

okyne-design commented 8 years ago

Hi, First, I want to thank you for your plugin, it is very cool. My problem: I want to open the datetime popup with the date, I have already set and not the current date and hour.

For example, my ng-model is 2016-04-09T15:27:47+02:00. When I open the popup, I still have the current date info selected. Is there a way to set the correct date if the ng-model is contains a date ? Thx

katemihalikova commented 8 years ago

Hi, it should work the way you described. It seems that you are not using an instance of Date in ng-model, are you? This component accepts only these instances, strings and timestamps are ignored. Try converting your value to a Date instance.

okyne-design commented 8 years ago

Oh Perfect, thanx. Using Date solved the issue