Initialization Option Author API

toolTipTimeFormat

The tooltip time format.

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

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

See Moment.js docs on String + Format for more information.

Examples

// Set the time format to hours:minutes am/pm
var initializationOptions = {
    "config": {
        "label_bundle": {
            "toolTipTimeFormat": "hh:mm a"
        }
    }
};

Values

Request object key config.label_bundle.toolTipTimeFormat

Type string

Was this article helpful?