displayModules - displayModules - The displayModules section specifies which Titan modules to display on the home page of the application. - Perceptive Content - Titan - Perceptive-Content/Titan/Foundation-26.1/Titan-Installation-and-Setup-Guide/Appendix-A-app.config.json-file/displayModules - Foundation 26.1 - Foundation 26.1

Titan Installation and Setup Guide

Platform
Perceptive Content
Product
Titan
Release
Foundation 26.1
License
ft:lastPublication
2026-05-11T13:41:21.773487
ft:locale
en-US

The displayModules section specifies which Titan modules to display on the home page of the application.

Default

The following settings display the default Titan modules on the homepage.

Options

Attribute Description
id Specifies the module to display. Options are Capture, CaptureIndexing, Documents, Folders, Tasks, and Workflow.
enabled Specifies whether you want the module to display on the Home page. The default is true.

Example

"displayModules": [
  { "id": "Capture", "enabled": true },
  { "id": "CaptureIndexing", "enabled": false },
  { "id": "Documents", "enabled": true },
  { "id": "Folders", "enabled": true },
  { "id": "Tasks", "enabled": true },
  { "id": "Workflow", "enabled": true }
],

Custom

The following settings allow you to customize which module tiles display on the home page.

Options

Attribute Description
name Specifies the custom tile you want to display on the Home page.
url Specifies the URL of the custom tile.
icon Specifies the name of the icon you want to display on the custom tile.

Example

"displayModules": [
  { "id": "Capture", "enabled": true },
  { "id": "CaptureIndexing", "enabled": false },
  { "name": "Custom Tile 1", "url": "https://someurl", "icon": "pin" },
  { "id": "Documents", "enabled": true },
  { "id": "Folders", "enabled": true },
  { "id": "Tasks", "enabled": false },
  { "id": "Workflow", "enabled": true },
  { "name": "Custom Tile 2", "url": "https://someotherurl", "icon": "notepad" }
],
Note:
  • All fields are required when using custom tiles.
  • The order set in the displayModules section is the order the tiles will display.