If I display a date/time in a view I can enable the option “show ‘today’ if appropriate”. This will replace todays (or yesterdays) date with the text “Today” (or “Yesterday”). I wanted to have the same functionality in an Xpage-based application I’m creating, but couldn’t find the XPage equivalent.
After some searching on the web I found an article written by Matt White (Human Readable dates in XPages) in which he kind-of did the same: the SSJS library he created allows you to convert dates to a “time since” string (e.g. “2 hours ago”, “6 days ago”). Since what I wanted is also another way of displaying dates I decided to extend his class (and rename it while I’m at it). You’ll find the resulting class this (compressed) text file: xpDates.zip.
Usage instructions
Download the attachment and paste the code in an SSJS script library. Add the library as a resource to the Xpage(s) you’ll want to use the new date format on.
There are 2 ways to convert dates (example for a document with a “modifiedDate” date/time field)
1. use SSJS to compute and convert a value:
var myDateValue = document1.getItemValueDate("modifiedDate"); var d = new ReadableDate(); d.toReadable(myDateValue);
or:
var d = new ReadableDate(); d.timeSince(myDateValue);
The first method will give you dates formatted like “Today 9:10”, “Yesterday 3:15”, “24 July 2:10”, the second will display the time since the specified date.
2. Bind a control to the date/time value/ field, set the display type to “String” and add a custom converter:
- type= xp:customConverter
- getAsObject: just enter “value” (javascript, without quotes)
- getAsString: enter “ReadableDateConverter.getAsString()” (javascript, without quotes)
The ReadableDate class currently has 3 configuration options:
- includeTime : will include the time when displaying a date.
- includeSeconds : includes seconds when displaying the time.
- includeYearIfCurrent : if true the year is always added, if false the year is only added if not the current year.
Since my app has a Dutch audience, I’ve added Dutch language strings to the class.