---
title: "Feature: #59144 - Previewing workspace records using Page TSconfig"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-59144"
source: "Changelog/7.5/Feature-59144-PageTSconfigWorkspacePreview.rst"
typo3-version: "7.5"
typo3-major: 7
type: "feature"
issue: 59144
forge: "https://forge.typo3.org/issues/59144"
tags: ["TSConfig", "ext:workspaces"]
rendered: "2026-09-18T17:00:34+00:00"
---

# Feature: #59144 - Previewing workspace records using Page TSconfig {#feature-59144}

See [forge#59144](https://forge.typo3.org/issues/59144)

## Description {#description}

Per default TYPO3 only creates preview links for the tables tt_content, pages
and pages_language_overlay. To avoid utilizing a hook for each table, creating
preview links can be triggered using Page TSconfig.

```typoscript
# Using page 123 for previewing workspaces records (in general)
options.workspaces.previewPageId = 123

# Using the pid field of each record for previewing (in general)
options.workspaces.previewPageId = field:pid

# Using page 123 for previewing workspaces records (for table tx_myext_table)
options.workspaces.previewPageId.tx_myext_table = 123

# Using the pid field of each record for previewing (or table tx_myext_table)
options.workspaces.previewPageId.tx_myext_table = field:pid
```
