Compare dates in Angularjs
-
I'm using ng-show in a page that I'm creating: <td ng-show="week.EndDate > controller.currentDate"> where week is an object with a property EndDate and currentDate is set in my controller: currentDate = new Date(); My ng-show fails whether I set the dates >, <, or =. I printed out my dates and this is what they are: week.Date = 2014-11-07 controller.currentDate = 2015-07-09T21:54:40.655Z I'm not sure if the issue is being caused by the difference in format or not. If so how can I correct this, if not, is there another way to compare dates?
-
Answer:
You should either convert your week.EndDate string to a Date object or wrap your comparison in a function that converts it to a date. ng-show="convertToDate(week.EndDate) > controller.currentDate" The only thing you need to keep in mind is that if you convert week.EndDate permanently to a Date object you might need to convert it back to your desired format when you want to store it somewhere for example.
Ryan Sayles at Stack Overflow Visit the source
Related Q & A:
- How to search events between two dates in WP?Best solution by WordPress
- How to get difference between two dates in years, months and days?Best solution by Stack Overflow
- How do I disable the previous dates in Android custom calendar?Best solution by Stack Overflow
- Suggestions for romantic dates?Best solution by Yahoo! Answers
- What are some important history dates about the PC?Best solution by datesandevents.org
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.