katemihalikova / ion-datetime-picker

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

get some [$compile:nonassign] Expression 'undefined' Error #32

Closed yaoyonstudio closed 8 years ago

yaoyonstudio commented 8 years ago

Hello! Thanks for the great work.

I use the plugin and get some error. here's my code.

<div ion-datetime-picker date ng-model="dateValue"> Date:{{dateValue}} </div>


11

when I click the "Date:" ,It pops the picker box, but I also get these error:

22

ion-datetime-picker

need help , thank you very much.

yaoyonstudio commented 8 years ago

Just figure out , I need to set the "month-step","hour-step","minute-step".... manually .

Now It works fine. Here's my code .

<div ion-datetime-picker date ng-model="dateValue" month-step="1" hour-step="1" minute-step="10" second-step="30"> Date:{{dateValue | date: "yyyy-MM-dd"}} </div>

katemihalikova commented 8 years ago

Thanks for reporting that bug.

katemihalikova commented 8 years ago

This should be fixed in v0.2.1. Please let me know if it is working for you even when you don't set all attrs manually.

yaoyonstudio commented 8 years ago

Hi, @katemihalikova

I update the js, and it works fine now.

Thanks for the great job.