Day.getNavigationName ()
Return the groupname of a day-object formatted as date-string to be used in the global linkedpath macro

  • See also
    hopobject.getNavigationName()
Sourcecode in Day/objectFunctions.js:
1:   function getNavigationName () {
2:      var ts = this.groupname.toDate("yyyyMMdd", this._parent.getTimeZone());
3:      return formatTimestamp(ts, "EEEE, dd.MM.yyyy");
4:   }