Posted 7 May 2019, 1:19 pm EST
Hi,
I am using Wijmo Library 5.20163.234 with Angular 1.6. I am trying to use the min property but its not working, please see the code
<wj-input-date ng-disabled="isDialog=='Y' && job.jobStatus!='Draft'" value="job.jobAwardedDate" format="MM/dd/yyyy"
placeholder="MM/dd/yyyy" style="width:200px" name="jobAwardedDate" min="firstDay"></wj-input-date>
JavaScript Code
$scope.todaysDate = new Date();
$scope.firstDay = new Date($scope.todaysDate.setDate($scope.todaysDate.getDate()));
javascript code is giving me the value
[date] Tue May 07 2019 13:07:03 GMT-0400 (Eastern Daylight Time)[date] Tue May 07 2019 13:07:03 GMT-0400 (Eastern Daylight Time)