Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

angularjs | date input not showing ng-model value

Tags:

angularjs

date input is not showing the date until the user change it

// showing the date
<p>{{someDate | date}}</p>

// not showing the date. instead showing mm/dd/yyyy.  
// but value will change when use change is
<input type="date" ng-model="someDate">

example code in jsbin

it IS working on version 1.3.0-beta.3, but

I need it to work on stable version 1.2.14. is it possible?

like image 963
Asaf Katz Avatar asked Mar 26 '14 15:03

Asaf Katz


1 Answers

I've created a simple directive to enable standard input[type="date"] form elements to work correctly with AngularJS ~1.2.16.

Please look here for details: https://github.com/betsol/angular-input-date

And here's the demo: http://jsfiddle.net/F2LcY/2/

Hope it helps!

like image 96
Slava Fomin II Avatar answered Oct 25 '22 17:10

Slava Fomin II