Reputation: 11324
I'm working on an Ionic application. I'm trying to set a default date (today) on an input date.
My code works if the type of input is text. But it doesn't work if I define an date type.
HTML code :
<html ng-app="ionicApp">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>Date with Ionic</title>
<link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet">
<script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script>
</head>
<body ng-controller="GraphCtrl">
<ion-header-bar class="bar-positive">
<h1 class="title">Ionic Date</h1>
</ion-header-bar>
<ion-content>
Text : <input type="text" ng-model="date_rdv" />
Date : <input type="date" ng-model="date_rdv" />
</ion-content>
</body>
</html>
My JS code :
angular.module('ionicApp', ['ionic'])
.controller('GraphCtrl', function($scope, $filter) {
$scope.date_rdv = $filter('date')(Date.now(), 'yyyy-MM-dd');
});
Do you have any idea ?
In order to define a defaultvalue on date input (not functionnal with text input), the definition of model must be as following :
$scope.date_rdv = new Date();
Upvotes: 1
Views: 7742
Reputation: 1744
you should use new Date()
instead. you don't need to filter.
The model must always be a Date object, otherwise Angular will throw an error. Invalid Date objects (dates whose getTime() is NaN) will be rendered as an empty string.
AngularJs documentation for input[data]
Upvotes: 1