Initialization Option Author API

toolTipDateFormat

The tooltip date format.

You would want to use this to customize the display of the date and time shown in the Item and Activity list views, showing the time of last edit.

Examples

// Set the date format to day-month-year
var initializationOptions = {
    "config": {
        "label_bundle": {
            "toolTipDateFormat": "DD-MM-YYYY"
        }
    }
};

Values

Request object key config.label_bundle.toolTipDateFormat

Type string

This value will automatically be localized when you set dateTimeLocale, but can be further customized if needed.

For more information, see the Moment.js documentation on String + Format.

Was this article helpful?